From dc1b312672d62c3379eb5b0ac73acfb1d6b9fd19 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 30 Jun 2021 14:41:38 -0400 Subject: [PATCH 1/7] Enable absolute imports --- awx/ui_next/.eslintrc | 5 +++++ awx/ui_next/jsconfig.json | 5 +++++ .../WorkflowJobTemplateVisualizer/Visualizer.test.jsx | 4 +--- 3 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 awx/ui_next/jsconfig.json diff --git a/awx/ui_next/.eslintrc b/awx/ui_next/.eslintrc index 1f83a5dd44..e3e33635e8 100644 --- a/awx/ui_next/.eslintrc +++ b/awx/ui_next/.eslintrc @@ -19,6 +19,11 @@ "settings": { "react": { "version": "16.5.2" + }, + "import/resolver": { + "node": { + paths: ["src"] + } } }, "env": { diff --git a/awx/ui_next/jsconfig.json b/awx/ui_next/jsconfig.json new file mode 100644 index 0000000000..ec2332eb49 --- /dev/null +++ b/awx/ui_next/jsconfig.json @@ -0,0 +1,5 @@ +{ + "compilerOptions": { + "baseUrl": "src" + } +} diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.jsx index 0ee9209487..93e878121e 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.jsx +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.jsx @@ -12,9 +12,7 @@ import workflowReducer from '../../../components/Workflow/workflowReducer'; jest.mock('../../../components/Workflow/workflowReducer'); -const realWorkflowReducer = jest.requireActual( - '../../../components/Workflow/workflowReducer' -).default; +const realWorkflowReducer = jest.requireActual('../../../components/Workflow/workflowReducer').default; jest.mock('../../../api'); From 0ee7d22e9d5c844de1b7d7ecb39999fbc83eea64 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 30 Jun 2021 14:45:56 -0400 Subject: [PATCH 2/7] Add script to switch relative imports --- tools/fixrelative.py | 108 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 tools/fixrelative.py diff --git a/tools/fixrelative.py b/tools/fixrelative.py new file mode 100644 index 0000000000..24dfd25fdd --- /dev/null +++ b/tools/fixrelative.py @@ -0,0 +1,108 @@ +import argparse +import glob +import os +from shutil import move, copymode +from tempfile import mkstemp + + +def get_new_import_string(old_import_str, root): + if not root.startswith("./"): + raise Exception("root must start with './'") + name = root.replace("./", "") + left, right = old_import_str.split("from") + left += "from '" + _, trailing = right.split(name) + + return left + name + trailing + + +roots = [ + "./api", + "./components", + # "./constants", + "./contexts", + "./screens", + "./types", + "./util", +] + + +def get_root(line): + matched_root = None + for root in roots: + if root in line: + matched_root = root + break + if "jest" in line: + matched_root = None + + return matched_root + + +def find_and_replace_roots(file_path, root_dir, preview): + fh, temp_path = mkstemp() + has_logged_file_name = False + with os.fdopen(fh, "w") as new_file: + with open(file_path) as old_file: + for (line_number, line) in enumerate(old_file): + matched_root = get_root(line) + if matched_root: + new_line = get_new_import_string(line, matched_root) + if not preview: + new_file.write(new_line) + if not has_logged_file_name: + log_file_replacement(root_dir, file_path) + has_logged_file_name = True + log_line_replacement(line_number, line, new_line) + elif not preview: + new_file.write(line) + if not preview: + copymode(file_path, temp_path) + os.remove(file_path) + move(temp_path, file_path) + + +def log_line_replacement(line_number, line, new_line): + display_line = line.replace(os.linesep, "") + display_new_line = new_line.replace(os.linesep, "") + print(f"\t (line {line_number}): {display_line} --> {display_new_line}") + + +def log_file_replacement(root_dir, file_path): + display_path = os.path.relpath(file_path, root_dir) + print("") + print(f"{display_path}:") + + +def rename_jsx(file_path, preview): + if not file_path.endswith(".jsx"): + return + new_path = file_path.replace(".jsx", ".js") + print(f"{file_path} --> {new_path}") + if preview: + return + move(file_path, new_path) + + +def parse_args(): + parser = argparse.ArgumentParser() + parser.add_argument("root_dir", help="Root directory") + parser.add_argument("--preview", help="Preview (no write)", action="store_true") + args = parser.parse_args() + + return args + + +def run(): + args = parse_args() + search_path = args.root_dir + "**/**/*.js*" + + for file_path in glob.iglob(search_path, recursive=True): + find_and_replace_roots(file_path, args.root_dir, args.preview) + #rename_jsx(file_path, args.preview) + + +if __name__ == "__main__": + run() + + From 595cf192b7337130cf09d55e77fd0b597c61385c Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Mon, 19 Jul 2021 11:29:26 -0400 Subject: [PATCH 3/7] Fix relative imports python tools/fixrelative.py awx/ui_next/src npm --prefix=awx/ui_next run lint -- --fix npm --prefix=awx/ui_next run prettier --- awx/ui_next/src/App.jsx | 24 +++++------ awx/ui_next/src/App.test.jsx | 4 +- awx/ui_next/src/api/Base.js | 4 +- awx/ui_next/src/components/About/About.jsx | 2 +- .../AdHocCommands/AdHocCommands.jsx | 6 +-- .../AdHocCommands/AdHocCommands.test.jsx | 10 ++--- .../AdHocCommandsWizard.test.jsx | 2 +- .../AdHocCommands/AdHocCredentialStep.jsx | 8 ++-- .../AdHocCredentialStep.test.jsx | 2 +- .../AdHocCommands/AdHocDetailsStep.jsx | 4 +- .../AdHocCommands/AdHocDetailsStep.test.jsx | 2 +- .../AdHocExecutionEnironmentStep.test.jsx | 2 +- .../AdHocExecutionEnvironmentStep.jsx | 8 ++-- .../AddDropDownButton/AddDropDownButton.jsx | 2 +- .../components/AddRole/AddResourceRole.jsx | 2 +- .../AddRole/AddResourceRole.test.jsx | 2 +- .../components/AddRole/SelectResourceStep.jsx | 6 +-- .../components/AppContainer/AppContainer.jsx | 6 +-- .../AppContainer/AppContainer.test.jsx | 4 +- .../AppContainer/PageHeaderToolbar.jsx | 8 ++-- .../AppContainer/PageHeaderToolbar.test.jsx | 2 +- .../AppContainer/useWsPendingApprovalCount.js | 4 +- .../AssociateModal/AssociateModal.jsx | 6 +-- .../src/components/CodeEditor/CodeEditor.jsx | 2 +- .../components/CodeEditor/CodeEditor.test.jsx | 2 +- .../components/CodeEditor/VariablesDetail.jsx | 7 +--- .../components/CodeEditor/VariablesField.jsx | 2 +- .../components/CodeEditor/VariablesInput.jsx | 2 +- .../components/ContentError/ContentError.jsx | 2 +- .../src/components/CopyButton/CopyButton.jsx | 2 +- .../CredentialChip/CredentialChip.jsx | 4 +- .../DataListToolbar/DataListToolbar.jsx | 4 +- .../components/DeleteButton/DeleteButton.jsx | 2 +- .../DeleteButton/DeleteButton.test.jsx | 2 +- .../DetailList/NumberSinceDetail.jsx | 2 +- .../components/DetailList/UserDateDetail.jsx | 4 +- .../DisassociateButton/DisassociateButton.jsx | 2 +- .../ExecutionEnvironmentDetail.jsx | 6 +-- .../src/components/HostForm/HostForm.jsx | 2 +- .../src/components/HostToggle/HostToggle.jsx | 4 +- .../components/HostToggle/HostToggle.test.jsx | 2 +- .../InstanceToggle/InstanceToggle.jsx | 8 ++-- .../InstanceToggle/InstanceToggle.test.jsx | 2 +- .../JobCancelButton/JobCancelButton.jsx | 4 +- .../JobCancelButton/JobCancelButton.test.jsx | 2 +- .../src/components/JobList/JobList.jsx | 20 +++++----- .../src/components/JobList/JobList.test.jsx | 10 ++--- .../JobList/JobListCancelButton.jsx | 6 +-- .../src/components/JobList/JobListItem.jsx | 4 +- .../src/components/JobList/useWsJobs.js | 6 +-- .../components/LaunchButton/LaunchButton.jsx | 6 +-- .../LaunchButton/LaunchButton.test.jsx | 10 ++--- .../components/LaunchPrompt/LaunchPrompt.jsx | 8 ++-- .../LaunchPrompt/LaunchPrompt.test.jsx | 12 +++--- .../LaunchPrompt/steps/CredentialsStep.jsx | 6 +-- .../steps/CredentialsStep.test.jsx | 2 +- .../LaunchPrompt/steps/InventoryStep.jsx | 6 +-- .../LaunchPrompt/steps/InventoryStep.test.jsx | 2 +- .../LaunchPrompt/steps/PreviewStep.jsx | 6 +-- .../LaunchPrompt/steps/SurveyStep.jsx | 8 ++-- .../steps/useOtherPromptsStep.jsx | 2 +- .../src/components/ListHeader/ListHeader.jsx | 6 +-- .../components/Lookup/ApplicationLookup.jsx | 8 ++-- .../Lookup/ApplicationLookup.test.jsx | 2 +- .../components/Lookup/CredentialLookup.jsx | 10 ++--- .../Lookup/CredentialLookup.test.jsx | 2 +- .../Lookup/ExecutionEnvironmentLookup.jsx | 8 ++-- .../ExecutionEnvironmentLookup.test.jsx | 2 +- .../components/Lookup/HostFilterLookup.jsx | 6 +-- .../Lookup/InstanceGroupsLookup.jsx | 8 ++-- .../src/components/Lookup/InventoryLookup.jsx | 8 ++-- .../Lookup/InventoryLookup.test.jsx | 2 +- awx/ui_next/src/components/Lookup/Lookup.jsx | 4 +- .../src/components/Lookup/Lookup.test.jsx | 2 +- .../Lookup/MultiCredentialsLookup.jsx | 8 ++-- .../Lookup/MultiCredentialsLookup.test.jsx | 2 +- .../components/Lookup/OrganizationLookup.jsx | 10 ++--- .../Lookup/OrganizationLookup.test.jsx | 2 +- .../src/components/Lookup/ProjectLookup.jsx | 12 +++--- .../components/Lookup/ProjectLookup.test.jsx | 2 +- .../components/MultiSelect/TagMultiSelect.jsx | 2 +- .../MultiSelect/useSyncedSelectValue.js | 2 +- .../NotificationList/NotificationList.jsx | 6 +-- .../NotificationList.test.jsx | 2 +- .../components/OptionsList/OptionsList.jsx | 2 +- .../OptionsList/OptionsList.test.jsx | 2 +- .../components/PaginatedTable/HeaderRow.jsx | 2 +- .../PaginatedTable/PaginatedTable.jsx | 5 +-- .../PaginatedTable/ToolbarAddButton.jsx | 2 +- .../PaginatedTable/ToolbarDeleteButton.jsx | 4 +- .../ToolbarDeleteButton.test.jsx | 2 +- .../components/PromptDetail/PromptDetail.jsx | 2 +- .../PromptDetail/PromptJobTemplateDetail.jsx | 2 +- .../PromptDetail/PromptProjectDetail.jsx | 4 +- .../PromptWFJobTemplateDetail.jsx | 2 +- .../DeleteRoleConfirmationModal.jsx | 2 +- .../ResourceAccessList/ResourceAccessList.jsx | 6 +-- .../ResourceAccessList.test.jsx | 3 +- .../ResourceAccessListItem.jsx | 2 +- .../src/components/Schedule/Schedule.jsx | 4 +- .../src/components/Schedule/Schedule.test.jsx | 2 +- .../Schedule/ScheduleAdd/ScheduleAdd.jsx | 14 +++---- .../Schedule/ScheduleAdd/ScheduleAdd.test.jsx | 2 +- .../ScheduleDetail/ScheduleDetail.jsx | 14 +++---- .../ScheduleDetail/ScheduleDetail.test.jsx | 2 +- .../Schedule/ScheduleEdit/ScheduleEdit.jsx | 16 ++++---- .../ScheduleEdit/ScheduleEdit.test.jsx | 4 +- .../Schedule/ScheduleList/ScheduleList.jsx | 8 ++-- .../ScheduleList/ScheduleList.test.jsx | 2 +- .../ScheduleList/ScheduleListItem.jsx | 4 +- .../ScheduleOccurrences.jsx | 2 +- .../ScheduleToggle/ScheduleToggle.jsx | 4 +- .../ScheduleToggle/ScheduleToggle.test.jsx | 2 +- .../Schedule/shared/DateTimePicker.jsx | 2 +- .../shared/FrequencyDetailSubform.jsx | 2 +- .../Schedule/shared/ScheduleForm.jsx | 12 +++--- .../Schedule/shared/ScheduleForm.test.jsx | 4 +- .../shared/SchedulePromptableFields.jsx | 2 +- .../Schedule/shared/buildRuleObj.js | 2 +- .../src/components/Search/AdvancedSearch.jsx | 4 +- awx/ui_next/src/components/Search/Search.jsx | 4 +- awx/ui_next/src/components/Sort/Sort.jsx | 4 +- .../src/components/Sparkline/Sparkline.jsx | 4 +- .../components/TemplateList/TemplateList.jsx | 14 +++---- .../TemplateList/TemplateList.test.jsx | 2 +- .../TemplateList/TemplateListItem.jsx | 10 ++--- .../TemplateList/TemplateListItem.test.jsx | 2 +- .../UserAndTeamAccessAdd.jsx | 4 +- .../UserAndTeamAccessAdd.test.jsx | 2 +- .../getResourceAccessConfig.js | 2 +- .../components/Workflow/WorkflowLegend.jsx | 2 +- .../components/Workflow/WorkflowNodeHelp.jsx | 2 +- .../components/Workflow/WorkflowStartNode.jsx | 2 +- .../Workflow/WorkflowStartNode.test.jsx | 2 +- .../src/components/Workflow/WorkflowTools.jsx | 2 +- awx/ui_next/src/contexts/Config.jsx | 8 ++-- awx/ui_next/src/contexts/Session.jsx | 4 +- awx/ui_next/src/routeConfig.jsx | 40 +++++++++---------- .../screens/ActivityStream/ActivityStream.jsx | 14 +++---- .../ActivityStreamDetailButton.jsx | 6 +-- .../ActivityStream/ActivityStreamListItem.jsx | 4 +- .../Application/Application/Application.jsx | 8 ++-- .../Application/Application.test.jsx | 2 +- .../ApplicationAdd/ApplicationAdd.jsx | 8 ++-- .../ApplicationAdd/ApplicationAdd.test.jsx | 2 +- .../ApplicationDetails/ApplicationDetails.jsx | 18 ++++----- .../ApplicationDetails.test.jsx | 2 +- .../ApplicationEdit/ApplicationEdit.jsx | 4 +- .../ApplicationEdit/ApplicationEdit.test.jsx | 2 +- .../ApplicationTokenList.jsx | 16 ++++---- .../ApplicationTokenList.test.jsx | 2 +- .../ApplicationTokenListItem.jsx | 6 +-- .../src/screens/Application/Applications.jsx | 4 +- .../ApplicationsList/ApplicationList.test.jsx | 2 +- .../ApplicationsList/ApplicationListItem.jsx | 6 +-- .../ApplicationsList/ApplicationsList.jsx | 16 ++++---- .../Application/shared/ApplicationForm.jsx | 14 +++---- .../shared/ApplicationForm.test.jsx | 2 +- .../src/screens/Credential/Credential.jsx | 12 +++--- .../screens/Credential/Credential.test.jsx | 2 +- .../CredentialAdd/CredentialAdd.jsx | 10 ++--- .../CredentialAdd/CredentialAdd.test.jsx | 10 ++--- .../CredentialDetail/CredentialDetail.jsx | 32 +++++++-------- .../CredentialDetail.test.jsx | 2 +- .../CredentialEdit/CredentialEdit.jsx | 14 +++---- .../CredentialEdit/CredentialEdit.test.jsx | 12 +++--- .../CredentialList/CredentialList.jsx | 18 ++++----- .../CredentialList/CredentialList.test.jsx | 2 +- .../CredentialList/CredentialListItem.jsx | 10 ++--- .../CredentialListItem.test.jsx | 2 +- .../src/screens/Credential/Credentials.jsx | 4 +- .../Credential/shared/CredentialForm.jsx | 11 ++--- .../BecomeMethodField.jsx | 2 +- .../CredentialFormFields/CredentialField.jsx | 10 ++--- .../CredentialPluginField.jsx | 4 +- .../CredentialPluginPrompt.jsx | 4 +- .../CredentialPluginPrompt.test.jsx | 2 +- .../CredentialsStep.jsx | 14 +++---- .../CredentialPluginPrompt/MetadataStep.jsx | 18 ++++----- .../CredentialPluginSelected.jsx | 4 +- .../Credential/shared/ExternalTestModal.jsx | 14 +++---- .../shared/ExternalTestModal.test.jsx | 2 +- .../Credential/shared/TypeInputsSubForm.jsx | 6 +-- .../screens/CredentialType/CredentialType.jsx | 10 ++--- .../CredentialType/CredentialType.test.jsx | 2 +- .../CredentialTypeAdd/CredentialTypeAdd.jsx | 6 +-- .../CredentialTypeAdd.test.jsx | 2 +- .../CredentialTypeDetails.jsx | 24 +++++------ .../CredentialTypeDetails.test.jsx | 4 +- .../CredentialTypeEdit/CredentialTypeEdit.jsx | 6 +-- .../CredentialTypeEdit.test.jsx | 2 +- .../CredentialTypeList/CredentialTypeList.jsx | 18 ++++----- .../CredentialTypeList.test.jsx | 2 +- .../CredentialTypeListItem.jsx | 4 +- .../CredentialType/CredentialTypes.jsx | 2 +- .../shared/CredentialTypeForm.jsx | 15 +++---- .../src/screens/Dashboard/Dashboard.jsx | 12 +++--- .../src/screens/Dashboard/Dashboard.test.jsx | 2 +- .../src/screens/Dashboard/DashboardGraph.jsx | 6 +-- .../screens/Dashboard/DashboardGraph.test.jsx | 2 +- .../ExecutionEnvironment.jsx | 10 ++--- .../ExecutionEnvironmentAdd.jsx | 6 +-- .../ExecutionEnvironmentAdd.test.jsx | 2 +- .../ExecutionEnvironmentDetails.jsx | 20 ++++------ .../ExecutionEnvironmentDetails.test.jsx | 2 +- .../ExecutionEnvironmentEdit.jsx | 6 +-- .../ExecutionEnvironmentEdit.test.jsx | 2 +- .../ExecutionEnvironmentList.jsx | 18 ++++----- .../ExecutionEnvironmentList.test.jsx | 12 +++--- .../ExecutionEnvironmentListItem.jsx | 10 ++--- .../ExecutionEnvironmentListItem.test.jsx | 2 +- .../ExecutionEnvironmentTemplateList.jsx | 10 ++--- .../ExecutionEnvironmentTemplateList.test.jsx | 2 +- .../ExecutionEnvironments.jsx | 2 +- .../shared/ExecutionEnvironmentForm.jsx | 22 +++++----- .../shared/ExecutionEnvironmentForm.test.jsx | 2 +- awx/ui_next/src/screens/Host/Host.jsx | 12 +++--- awx/ui_next/src/screens/Host/Host.test.jsx | 2 +- .../src/screens/Host/HostAdd/HostAdd.jsx | 6 +-- .../src/screens/Host/HostAdd/HostAdd.test.jsx | 2 +- .../screens/Host/HostDetail/HostDetail.jsx | 24 +++++------ .../Host/HostDetail/HostDetail.test.jsx | 2 +- .../src/screens/Host/HostEdit/HostEdit.jsx | 6 +-- .../screens/Host/HostEdit/HostEdit.test.jsx | 2 +- .../src/screens/Host/HostFacts/HostFacts.jsx | 16 ++++---- .../screens/Host/HostFacts/HostFacts.test.jsx | 2 +- .../screens/Host/HostGroups/HostGroupItem.jsx | 4 +- .../Host/HostGroups/HostGroupsList.jsx | 20 +++++----- .../Host/HostGroups/HostGroupsList.test.jsx | 2 +- .../src/screens/Host/HostList/HostList.jsx | 20 ++++------ .../screens/Host/HostList/HostList.test.jsx | 2 +- .../screens/Host/HostList/HostListItem.jsx | 10 ++--- .../Host/HostList/SmartInventoryButton.jsx | 2 +- awx/ui_next/src/screens/Host/Hosts.jsx | 4 +- .../screens/InstanceGroup/ContainerGroup.jsx | 12 +++--- .../InstanceGroup/ContainerGroup.test.jsx | 2 +- .../ContainerGroupAdd/ContainerGroupAdd.jsx | 12 +++--- .../ContainerGroupAdd.test.jsx | 2 +- .../ContainerGroupDetails.jsx | 24 +++++------ .../ContainerGroupDetails.test.jsx | 2 +- .../ContainerGroupEdit/ContainerGroupEdit.jsx | 10 ++--- .../ContainerGroupEdit.test.jsx | 2 +- .../screens/InstanceGroup/InstanceGroup.jsx | 12 +++--- .../InstanceGroup/InstanceGroup.test.jsx | 2 +- .../InstanceGroupAdd/InstanceGroupAdd.jsx | 4 +- .../InstanceGroupAdd.test.jsx | 2 +- .../InstanceGroupDetails.jsx | 16 ++++---- .../InstanceGroupDetails.test.jsx | 3 +- .../InstanceGroupEdit/InstanceGroupEdit.jsx | 4 +- .../InstanceGroupEdit.test.jsx | 2 +- .../InstanceGroupList/InstanceGroupList.jsx | 20 +++++----- .../InstanceGroupList.test.jsx | 12 +++--- .../InstanceGroupListItem.jsx | 4 +- .../screens/InstanceGroup/InstanceGroups.jsx | 6 +-- .../InstanceGroup/Instances/InstanceList.jsx | 20 +++++----- .../Instances/InstanceList.test.jsx | 2 +- .../Instances/InstanceListItem.jsx | 18 ++++----- .../Instances/InstanceListItem.test.jsx | 4 +- .../shared/ContainerGroupForm.jsx | 14 +++---- .../shared/InstanceGroupForm.jsx | 8 ++-- .../src/screens/Inventory/Inventories.jsx | 4 +- .../src/screens/Inventory/Inventory.jsx | 12 +++--- .../src/screens/Inventory/Inventory.test.jsx | 2 +- .../Inventory/InventoryAdd/InventoryAdd.jsx | 4 +- .../InventoryAdd/InventoryAdd.test.jsx | 2 +- .../InventoryDetail/InventoryDetail.jsx | 30 ++++++-------- .../InventoryDetail/InventoryDetail.test.jsx | 2 +- .../Inventory/InventoryEdit/InventoryEdit.jsx | 8 ++-- .../InventoryEdit/InventoryEdit.test.jsx | 2 +- .../InventoryGroup/InventoryGroup.jsx | 9 ++--- .../InventoryGroup/InventoryGroup.test.jsx | 2 +- .../InventoryGroupAdd/InventoryGroupAdd.jsx | 2 +- .../InventoryGroupAdd.test.jsx | 2 +- .../InventoryGroupDetail.jsx | 14 +++---- .../InventoryGroupDetail.test.jsx | 2 +- .../InventoryGroupEdit/InventoryGroupEdit.jsx | 2 +- .../InventoryGroupEdit.test.jsx | 2 +- .../InventoryGroupHostAdd.jsx | 6 +-- .../InventoryGroupHostAdd.test.jsx | 2 +- .../InventoryGroupHostList.jsx | 24 +++++------ .../InventoryGroupHostList.test.jsx | 2 +- .../InventoryGroupHostListItem.jsx | 8 ++-- .../InventoryGroups/InventoryGroupItem.jsx | 4 +- .../InventoryGroups/InventoryGroupsList.jsx | 14 +++---- .../InventoryGroupsList.test.jsx | 2 +- .../Inventory/InventoryHost/InventoryHost.jsx | 12 +++--- .../InventoryHost/InventoryHost.test.jsx | 2 +- .../InventoryHostAdd/InventoryHostAdd.jsx | 6 +-- .../InventoryHostAdd.test.jsx | 2 +- .../InventoryHostDetail.jsx | 24 +++++------ .../InventoryHostDetail.test.jsx | 2 +- .../InventoryHostEdit/InventoryHostEdit.jsx | 6 +-- .../InventoryHostEdit.test.jsx | 2 +- .../InventoryHostFacts/InventoryHostFacts.jsx | 16 ++++---- .../InventoryHostFacts.test.jsx | 2 +- .../InventoryHostGroupItem.jsx | 4 +- .../InventoryHostGroups.test.jsx | 2 +- .../InventoryHostGroupsList.jsx | 22 +++++----- .../InventoryHostGroupsList.test.jsx | 2 +- .../InventoryHosts/InventoryHostItem.jsx | 6 +-- .../InventoryHosts/InventoryHostList.jsx | 18 ++++----- .../InventoryHosts/InventoryHostList.test.jsx | 2 +- .../Inventory/InventoryList/InventoryList.jsx | 20 +++++----- .../InventoryList/InventoryList.test.jsx | 6 +-- .../InventoryList/InventoryListItem.jsx | 12 +++--- .../InventoryList/InventoryListItem.test.jsx | 2 +- .../InventoryList/useWsInventories.js | 6 +-- .../InventoryRelatedGroupAdd.jsx | 2 +- .../InventoryRelatedGroupAdd.test.jsx | 2 +- .../InventoryRelatedGroupList.jsx | 24 +++++------ .../InventoryRelatedGroupList.test.jsx | 2 +- .../InventoryRelatedGroupListItem.jsx | 4 +- .../InventorySource/InventorySource.jsx | 18 ++++----- .../InventorySource/InventorySource.test.jsx | 2 +- .../InventorySourceAdd/InventorySourceAdd.jsx | 6 +-- .../InventorySourceAdd.test.jsx | 2 +- .../InventorySourceDetail.jsx | 32 +++++++-------- .../InventorySourceDetail.test.jsx | 10 ++--- .../InventorySourceEdit.jsx | 6 +-- .../InventorySourceEdit.test.jsx | 2 +- .../InventorySources/InventorySourceList.jsx | 18 ++++----- .../InventorySourceList.test.jsx | 2 +- .../InventorySourceListItem.jsx | 8 ++-- .../InventorySources/InventorySources.jsx | 2 +- .../InventorySources/useWsInventorySources.js | 2 +- .../src/screens/Inventory/SmartInventory.jsx | 14 +++---- .../screens/Inventory/SmartInventory.test.jsx | 2 +- .../SmartInventoryAdd/SmartInventoryAdd.jsx | 6 +-- .../SmartInventoryAdd.test.jsx | 6 +-- .../SmartInventoryDetail.jsx | 30 ++++++-------- .../SmartInventoryDetail.test.jsx | 2 +- .../SmartInventoryEdit/SmartInventoryEdit.jsx | 12 +++--- .../SmartInventoryEdit.test.jsx | 6 +-- .../SmartInventoryHost/SmartInventoryHost.jsx | 10 ++--- .../SmartInventoryHost.test.jsx | 2 +- .../SmartInventoryHostDetail.jsx | 14 +++---- .../SmartInventoryHostList.jsx | 16 ++++---- .../SmartInventoryHostList.test.jsx | 2 +- .../SmartInventoryHostListItem.jsx | 4 +- .../SmartInventoryHosts.jsx | 2 +- .../Inventory/shared/InventoryForm.jsx | 17 ++++---- .../Inventory/shared/InventoryGroupForm.jsx | 15 +++---- .../shared/InventoryGroupsDeleteModal.jsx | 10 ++--- .../InventoryGroupsDeleteModal.test.jsx | 2 +- .../Inventory/shared/InventorySourceForm.jsx | 23 +++++------ .../shared/InventorySourceForm.test.jsx | 2 +- .../InventorySourceSubForms/AzureSubForm.jsx | 8 ++-- .../AzureSubForm.test.jsx | 2 +- .../InventorySourceSubForms/EC2SubForm.jsx | 6 +-- .../EC2SubForm.test.jsx | 2 +- .../InventorySourceSubForms/GCESubForm.jsx | 8 ++-- .../GCESubForm.test.jsx | 2 +- .../InsightsSubForm.jsx | 8 ++-- .../InsightsSubForm.test.jsx | 2 +- .../OpenStackSubForm.jsx | 8 ++-- .../OpenStackSubForm.test.jsx | 2 +- .../InventorySourceSubForms/SCMSubForm.jsx | 12 +++--- .../SCMSubForm.test.jsx | 2 +- .../SatelliteSubForm.jsx | 8 ++-- .../SatelliteSubForm.test.jsx | 2 +- .../InventorySourceSubForms/SharedFields.jsx | 15 +++---- .../InventorySourceSubForms/TowerSubForm.jsx | 8 ++-- .../TowerSubForm.test.jsx | 2 +- .../InventorySourceSubForms/VMwareSubForm.jsx | 8 ++-- .../VMwareSubForm.test.jsx | 2 +- .../VirtualizationSubForm.jsx | 8 ++-- .../VirtualizationSubForm.test.jsx | 2 +- .../shared/InventorySourceSyncButton.jsx | 8 ++-- .../shared/InventorySourceSyncButton.test.jsx | 2 +- .../Inventory/shared/SmartInventoryForm.jsx | 31 +++++++------- .../shared/SmartInventoryForm.test.jsx | 6 +-- awx/ui_next/src/screens/Job/Job.jsx | 10 ++--- .../src/screens/Job/JobDetail/JobDetail.jsx | 37 ++++++++--------- .../screens/Job/JobDetail/JobDetail.test.jsx | 2 +- .../screens/Job/JobOutput/HostEventModal.jsx | 8 ++-- .../src/screens/Job/JobOutput/JobOutput.jsx | 36 ++++++++--------- .../screens/Job/JobOutput/JobOutput.test.jsx | 2 +- .../Job/JobOutput/shared/OutputToolbar.jsx | 11 ++--- .../src/screens/Job/JobTypeRedirect.jsx | 8 ++-- awx/ui_next/src/screens/Job/Jobs.jsx | 4 +- .../Job/WorkflowOutput/WorkflowOutput.jsx | 12 +++--- .../WorkflowOutput/WorkflowOutput.test.jsx | 2 +- .../WorkflowOutput/WorkflowOutputGraph.jsx | 10 ++--- .../WorkflowOutputGraph.test.jsx | 2 +- .../Job/WorkflowOutput/WorkflowOutputLink.jsx | 4 +- .../WorkflowOutputLink.test.jsx | 2 +- .../Job/WorkflowOutput/WorkflowOutputNode.jsx | 10 ++--- .../WorkflowOutputNode.test.jsx | 2 +- .../WorkflowOutput/WorkflowOutputToolbar.jsx | 4 +- .../WorkflowOutputToolbar.test.jsx | 2 +- .../Job/WorkflowOutput/useWsWorkflowOutput.js | 4 +- awx/ui_next/src/screens/Job/useWsJob.js | 4 +- awx/ui_next/src/screens/Login/Login.jsx | 10 ++--- awx/ui_next/src/screens/Login/Login.test.jsx | 2 +- .../screens/ManagementJob/ManagementJob.jsx | 16 ++++---- .../LaunchManagementPrompt.jsx | 2 +- .../ManagementJobList/ManagementJobList.jsx | 16 ++++---- .../ManagementJobList.test.jsx | 2 +- .../ManagementJobListItem.jsx | 8 ++-- .../screens/ManagementJob/ManagementJobs.jsx | 2 +- awx/ui_next/src/screens/Metrics/Metrics.jsx | 10 ++--- .../src/screens/Metrics/Metrics.test.jsx | 2 +- awx/ui_next/src/screens/NotFound.jsx | 2 +- .../NotificationTemplate.jsx | 10 ++--- .../NotificationTemplateAdd.jsx | 8 ++-- .../NotificationTemplateDetail.jsx | 16 ++++---- .../NotificationTemplateEdit.jsx | 4 +- .../NotificationTemplateList.jsx | 16 ++++---- .../NotificationTemplateList.test.jsx | 2 +- .../NotificationTemplateListItem.jsx | 16 ++++---- .../NotificationTemplateListItem.test.jsx | 2 +- .../NotificationTemplates.jsx | 2 +- .../shared/CustomMessagesSubForm.jsx | 11 ++--- .../shared/NotificationTemplateForm.jsx | 12 +++--- .../shared/TypeInputsSubForm.jsx | 12 +++--- .../src/screens/Organization/Organization.jsx | 12 +++--- .../Organization/Organization.test.jsx | 4 +- .../OrganizationAdd/OrganizationAdd.jsx | 10 ++--- .../OrganizationAdd/OrganizationAdd.test.jsx | 2 +- .../OrganizationDetail/OrganizationDetail.jsx | 32 +++++++-------- .../OrganizationDetail.test.jsx | 2 +- .../OrganizationEdit/OrganizationEdit.jsx | 4 +- .../OrganizationEdit.test.jsx | 2 +- .../OrganizationExecEnvList.jsx | 10 ++--- .../OrganizationExecEnvList.test.jsx | 2 +- .../OrganizationExecEnvListItem.jsx | 2 +- .../OrganizationList/OrganizationList.jsx | 18 ++++----- .../OrganizationList.test.jsx | 2 +- .../OrganizationList/OrganizationListItem.jsx | 4 +- .../OrganizationTeamList.jsx | 8 ++-- .../OrganizationTeamList.test.jsx | 2 +- .../OrganizationTeamListItem.jsx | 2 +- .../screens/Organization/Organizations.jsx | 4 +- .../Organization/shared/OrganizationForm.jsx | 20 +++++----- .../shared/OrganizationForm.test.jsx | 2 +- awx/ui_next/src/screens/Project/Project.jsx | 18 ++++----- .../src/screens/Project/Project.test.jsx | 4 +- .../screens/Project/ProjectAdd/ProjectAdd.jsx | 4 +- .../Project/ProjectAdd/ProjectAdd.test.jsx | 2 +- .../Project/ProjectDetail/ProjectDetail.jsx | 36 ++++++++--------- .../ProjectDetail/ProjectDetail.test.jsx | 10 ++--- .../Project/ProjectDetail/useWsProject.js | 4 +- .../ProjectDetail/useWsProject.test.jsx | 2 +- .../Project/ProjectEdit/ProjectEdit.jsx | 4 +- .../Project/ProjectEdit/ProjectEdit.test.jsx | 2 +- .../ProjectJobTemplatesList.jsx | 16 ++++---- .../ProjectJobTemplatesListItem.jsx | 8 ++-- .../Project/ProjectList/ProjectList.jsx | 20 +++++----- .../Project/ProjectList/ProjectList.test.jsx | 2 +- .../Project/ProjectList/ProjectListItem.jsx | 26 +++++------- .../ProjectList/ProjectListItem.test.jsx | 2 +- .../Project/ProjectList/useWsProjects.js | 2 +- awx/ui_next/src/screens/Project/Projects.jsx | 2 +- .../screens/Project/shared/ProjectForm.jsx | 25 +++++------- .../Project/shared/ProjectForm.test.jsx | 2 +- .../shared/ProjectSubForms/GitSubForm.jsx | 6 +-- .../ProjectSubForms/InsightsSubForm.jsx | 4 +- .../shared/ProjectSubForms/ManualSubForm.jsx | 10 ++--- .../shared/ProjectSubForms/SharedFields.jsx | 11 ++--- .../Project/shared/ProjectSyncButton.jsx | 8 ++-- .../Project/shared/ProjectSyncButton.test.jsx | 2 +- .../src/screens/Schedule/AllSchedules.jsx | 6 +-- .../src/screens/Setting/AzureAD/AzureAD.jsx | 2 +- .../screens/Setting/AzureAD/AzureAD.test.jsx | 4 +- .../AzureAD/AzureADDetail/AzureADDetail.jsx | 18 ++++----- .../AzureADDetail/AzureADDetail.test.jsx | 4 +- .../AzureAD/AzureADEdit/AzureADEdit.jsx | 18 ++++----- .../AzureAD/AzureADEdit/AzureADEdit.test.jsx | 4 +- .../src/screens/Setting/GitHub/GitHub.jsx | 2 +- .../screens/Setting/GitHub/GitHub.test.jsx | 4 +- .../GitHub/GitHubDetail/GitHubDetail.jsx | 18 ++++----- .../GitHub/GitHubDetail/GitHubDetail.test.jsx | 4 +- .../Setting/GitHub/GitHubEdit/GitHubEdit.jsx | 18 ++++----- .../GitHub/GitHubEdit/GitHubEdit.test.jsx | 4 +- .../GitHubEnterpriseEdit.jsx | 18 ++++----- .../GitHubEnterpriseEdit.test.jsx | 4 +- .../GitHubEnterpriseOrgEdit.jsx | 18 ++++----- .../GitHubEnterpriseOrgEdit.test.jsx | 4 +- .../GitHubEnterpriseTeamEdit.jsx | 18 ++++----- .../GitHubEnterpriseTeamEdit.test.jsx | 4 +- .../GitHub/GitHubOrgEdit/GitHubOrgEdit.jsx | 18 ++++----- .../GitHubOrgEdit/GitHubOrgEdit.test.jsx | 4 +- .../GitHub/GitHubTeamEdit/GitHubTeamEdit.jsx | 18 ++++----- .../GitHubTeamEdit/GitHubTeamEdit.test.jsx | 4 +- .../Setting/GoogleOAuth2/GoogleOAuth2.jsx | 2 +- .../GoogleOAuth2/GoogleOAuth2.test.jsx | 4 +- .../GoogleOAuth2Detail/GoogleOAuth2Detail.jsx | 18 ++++----- .../GoogleOAuth2Detail.test.jsx | 4 +- .../GoogleOAuth2Edit/GoogleOAuth2Edit.jsx | 18 ++++----- .../GoogleOAuth2Edit.test.jsx | 4 +- awx/ui_next/src/screens/Setting/Jobs/Jobs.jsx | 2 +- .../src/screens/Setting/Jobs/Jobs.test.jsx | 2 +- .../Setting/Jobs/JobsDetail/JobsDetail.jsx | 18 ++++----- .../Jobs/JobsDetail/JobsDetail.test.jsx | 4 +- .../Setting/Jobs/JobsEdit/JobsEdit.jsx | 20 +++++----- .../Setting/Jobs/JobsEdit/JobsEdit.test.jsx | 4 +- awx/ui_next/src/screens/Setting/LDAP/LDAP.jsx | 2 +- .../src/screens/Setting/LDAP/LDAP.test.jsx | 4 +- .../Setting/LDAP/LDAPDetail/LDAPDetail.jsx | 18 ++++----- .../LDAP/LDAPDetail/LDAPDetail.test.jsx | 4 +- .../Setting/LDAP/LDAPEdit/LDAPEdit.jsx | 21 +++++----- .../Setting/LDAP/LDAPEdit/LDAPEdit.test.jsx | 4 +- .../src/screens/Setting/Logging/Logging.jsx | 4 +- .../screens/Setting/Logging/Logging.test.jsx | 2 +- .../Logging/LoggingDetail/LoggingDetail.jsx | 18 ++++----- .../LoggingDetail/LoggingDetail.test.jsx | 4 +- .../Logging/LoggingEdit/LoggingEdit.jsx | 20 +++++----- .../Logging/LoggingEdit/LoggingEdit.test.jsx | 4 +- .../MiscAuthentication/MiscAuthentication.jsx | 4 +- .../MiscAuthentication.test.jsx | 2 +- .../MiscAuthenticationDetail.jsx | 18 ++++----- .../MiscAuthenticationDetail.test.jsx | 4 +- .../MiscAuthenticationEdit.jsx | 20 +++++----- .../MiscAuthenticationEdit.test.jsx | 4 +- .../screens/Setting/MiscSystem/MiscSystem.jsx | 4 +- .../Setting/MiscSystem/MiscSystem.test.jsx | 2 +- .../MiscSystemDetail/MiscSystemDetail.jsx | 18 ++++----- .../MiscSystemDetail.test.jsx | 4 +- .../MiscSystemEdit/MiscSystemEdit.jsx | 20 +++++----- .../MiscSystemEdit/MiscSystemEdit.test.jsx | 4 +- .../src/screens/Setting/RADIUS/RADIUS.jsx | 2 +- .../screens/Setting/RADIUS/RADIUS.test.jsx | 4 +- .../RADIUS/RADIUSDetail/RADIUSDetail.jsx | 18 ++++----- .../RADIUS/RADIUSDetail/RADIUSDetail.test.jsx | 4 +- .../Setting/RADIUS/RADIUSEdit/RADIUSEdit.jsx | 20 +++++----- .../RADIUS/RADIUSEdit/RADIUSEdit.test.jsx | 4 +- awx/ui_next/src/screens/Setting/SAML/SAML.jsx | 2 +- .../src/screens/Setting/SAML/SAML.test.jsx | 4 +- .../Setting/SAML/SAMLDetail/SAMLDetail.jsx | 18 ++++----- .../SAML/SAMLDetail/SAMLDetail.test.jsx | 4 +- .../Setting/SAML/SAMLEdit/SAMLEdit.jsx | 18 ++++----- .../Setting/SAML/SAMLEdit/SAMLEdit.test.jsx | 4 +- .../src/screens/Setting/SettingList.jsx | 6 +-- awx/ui_next/src/screens/Setting/Settings.jsx | 14 +++---- .../src/screens/Setting/Settings.test.jsx | 2 +- .../Setting/Subscription/Subscription.jsx | 2 +- .../Subscription/Subscription.test.jsx | 2 +- .../SubscriptionDetail/SubscriptionDetail.jsx | 14 +++---- .../SubscriptionEdit/AnalyticsStep.jsx | 11 ++--- .../SubscriptionEdit/EulaStep.jsx | 2 +- .../SubscriptionEdit/SubscriptionEdit.jsx | 12 +++--- .../SubscriptionEdit.test.jsx | 8 +--- .../SubscriptionEdit/SubscriptionModal.jsx | 14 +++---- .../SubscriptionModal.test.jsx | 2 +- .../SubscriptionEdit/SubscriptionStep.jsx | 10 ++--- .../src/screens/Setting/TACACS/TACACS.jsx | 2 +- .../screens/Setting/TACACS/TACACS.test.jsx | 4 +- .../TACACS/TACACSDetail/TACACSDetail.jsx | 18 ++++----- .../TACACS/TACACSDetail/TACACSDetail.test.jsx | 4 +- .../Setting/TACACS/TACACSEdit/TACACSEdit.jsx | 20 +++++----- .../TACACS/TACACSEdit/TACACSEdit.test.jsx | 4 +- awx/ui_next/src/screens/Setting/UI/UI.jsx | 2 +- .../src/screens/Setting/UI/UI.test.jsx | 4 +- .../screens/Setting/UI/UIDetail/UIDetail.jsx | 18 ++++----- .../Setting/UI/UIDetail/UIDetail.test.jsx | 4 +- .../src/screens/Setting/UI/UIEdit/UIEdit.jsx | 22 +++++----- .../screens/Setting/UI/UIEdit/UIEdit.test.jsx | 4 +- .../screens/Setting/shared/RevertAllAlert.jsx | 2 +- .../Setting/shared/RevertFormActionGroup.jsx | 2 +- .../screens/Setting/shared/SettingDetail.jsx | 4 +- .../screens/Setting/shared/SharedFields.jsx | 20 ++++------ .../screens/Setting/shared/settingUtils.js | 2 +- awx/ui_next/src/screens/Team/Team.jsx | 10 ++--- awx/ui_next/src/screens/Team/Team.test.jsx | 2 +- .../src/screens/Team/TeamAdd/TeamAdd.jsx | 6 +-- .../src/screens/Team/TeamAdd/TeamAdd.test.jsx | 2 +- .../screens/Team/TeamDetail/TeamDetail.jsx | 16 ++++---- .../Team/TeamDetail/TeamDetail.test.jsx | 2 +- .../src/screens/Team/TeamEdit/TeamEdit.jsx | 6 +-- .../screens/Team/TeamEdit/TeamEdit.test.jsx | 2 +- .../src/screens/Team/TeamList/TeamList.jsx | 16 ++++---- .../screens/Team/TeamList/TeamList.test.jsx | 2 +- .../screens/Team/TeamList/TeamListItem.jsx | 4 +- .../screens/Team/TeamRoles/TeamRolesList.jsx | 16 ++++---- .../Team/TeamRoles/TeamRolesList.test.jsx | 2 +- awx/ui_next/src/screens/Team/Teams.jsx | 4 +- .../src/screens/Team/shared/TeamForm.jsx | 10 ++--- .../JobTemplateAdd/JobTemplateAdd.jsx | 4 +- .../JobTemplateAdd/JobTemplateAdd.test.jsx | 12 +++--- .../JobTemplateDetail/JobTemplateDetail.jsx | 30 +++++++------- .../JobTemplateDetail.test.jsx | 2 +- .../JobTemplateEdit/JobTemplateEdit.jsx | 12 +++--- .../JobTemplateEdit/JobTemplateEdit.test.jsx | 12 +++--- .../Template/Survey/MultipleChoiceField.jsx | 2 +- .../screens/Template/Survey/SurveyList.jsx | 8 ++-- .../Template/Survey/SurveyList.test.jsx | 2 +- .../Template/Survey/SurveyListItem.jsx | 2 +- .../Template/Survey/SurveyPreviewModal.jsx | 2 +- .../Template/Survey/SurveyQuestionAdd.jsx | 2 +- .../Template/Survey/SurveyQuestionEdit.jsx | 4 +- .../Template/Survey/SurveyQuestionForm.jsx | 16 ++++---- .../screens/Template/Survey/SurveyToolbar.jsx | 2 +- awx/ui_next/src/screens/Template/Template.jsx | 18 ++++----- .../src/screens/Template/Template.test.jsx | 2 +- .../src/screens/Template/TemplateSurvey.jsx | 10 ++--- .../screens/Template/TemplateSurvey.test.jsx | 2 +- .../src/screens/Template/Templates.jsx | 4 +- .../screens/Template/WorkflowJobTemplate.jsx | 24 +++++------ .../Template/WorkflowJobTemplate.test.jsx | 2 +- .../WorkflowJobTemplateAdd.jsx | 16 +++----- .../WorkflowJobTemplateAdd.test.jsx | 2 +- .../WorkflowJobTemplateDetail.jsx | 30 ++++++-------- .../WorkflowJobTemplateDetail.test.jsx | 2 +- .../WorkflowJobTemplateEdit.jsx | 18 ++++----- .../WorkflowJobTemplateEdit.test.jsx | 4 +- .../Modals/DeleteAllNodesModal.jsx | 4 +- .../Modals/DeleteAllNodesModal.test.jsx | 2 +- .../Modals/LinkModals/LinkAddModal.jsx | 2 +- .../Modals/LinkModals/LinkAddModal.test.jsx | 4 +- .../Modals/LinkModals/LinkDeleteModal.jsx | 4 +- .../LinkModals/LinkDeleteModal.test.jsx | 2 +- .../Modals/LinkModals/LinkEditModal.jsx | 2 +- .../Modals/LinkModals/LinkEditModal.test.jsx | 4 +- .../Modals/LinkModals/LinkModal.jsx | 4 +- .../Modals/LinkModals/LinkModal.test.jsx | 4 +- .../Modals/NodeModals/NodeAddModal.jsx | 4 +- .../Modals/NodeModals/NodeAddModal.test.jsx | 8 ++-- .../Modals/NodeModals/NodeDeleteModal.jsx | 4 +- .../NodeModals/NodeDeleteModal.test.jsx | 2 +- .../Modals/NodeModals/NodeEditModal.jsx | 2 +- .../Modals/NodeModals/NodeEditModal.test.jsx | 8 ++-- .../Modals/NodeModals/NodeModal.jsx | 22 +++++----- .../Modals/NodeModals/NodeModal.test.jsx | 12 +++--- .../NodeTypeStep/InventorySourcesList.jsx | 12 +++--- .../InventorySourcesList.test.jsx | 2 +- .../NodeTypeStep/JobTemplatesList.jsx | 12 +++--- .../NodeTypeStep/JobTemplatesList.test.jsx | 2 +- .../NodeModals/NodeTypeStep/NodeTypeStep.jsx | 17 ++++---- .../NodeTypeStep/NodeTypeStep.test.jsx | 4 +- .../NodeModals/NodeTypeStep/ProjectsList.jsx | 12 +++--- .../NodeTypeStep/ProjectsList.test.jsx | 2 +- .../NodeTypeStep/WorkflowJobTemplatesList.jsx | 12 +++--- .../WorkflowJobTemplatesList.test.jsx | 2 +- .../NodeTypeStep/useNodeTypeStep.jsx | 2 +- .../Modals/NodeModals/NodeViewModal.jsx | 14 +++---- .../Modals/NodeModals/NodeViewModal.test.jsx | 4 +- .../Modals/NodeModals/RunStep.jsx | 2 +- .../Modals/NodeModals/useRunTypeStep.jsx | 2 +- .../Modals/NodeModals/useWorkflowNodeSteps.js | 14 +++---- .../Modals/UnsavedChangesModal.jsx | 2 +- .../Modals/UnsavedChangesModal.test.jsx | 2 +- .../Visualizer.jsx | 28 ++++++------- .../Visualizer.test.jsx | 11 ++--- .../VisualizerGraph.jsx | 6 +-- .../VisualizerGraph.test.jsx | 2 +- .../VisualizerLink.jsx | 6 +-- .../VisualizerLink.test.jsx | 2 +- .../VisualizerNode.jsx | 12 +++--- .../VisualizerNode.test.jsx | 4 +- .../VisualizerStartScreen.jsx | 2 +- .../VisualizerStartScreen.test.jsx | 2 +- .../VisualizerToolbar.jsx | 8 ++-- .../VisualizerToolbar.test.jsx | 2 +- .../WorkflowJobTemplateVisualizerUtils.js | 2 +- .../Template/shared/JobTemplateForm.jsx | 34 ++++++++-------- .../Template/shared/JobTemplateForm.test.jsx | 14 +++---- .../screens/Template/shared/LabelSelect.jsx | 6 +-- .../Template/shared/LabelSelect.test.jsx | 2 +- .../Template/shared/PlaybookSelect.jsx | 4 +- .../Template/shared/PlaybookSelect.test.jsx | 2 +- .../Template/shared/WebhookSubForm.jsx | 16 ++++---- .../Template/shared/WebhookSubForm.test.jsx | 2 +- .../shared/WorkflowJobTemplateForm.jsx | 24 +++++------ .../shared/WorkflowJobTemplateForm.test.jsx | 10 ++--- awx/ui_next/src/screens/User/User.jsx | 8 ++-- awx/ui_next/src/screens/User/User.test.jsx | 2 +- .../src/screens/User/UserAdd/UserAdd.jsx | 4 +- .../src/screens/User/UserAdd/UserAdd.test.jsx | 2 +- .../screens/User/UserDetail/UserDetail.jsx | 16 ++++---- .../User/UserDetail/UserDetail.test.jsx | 2 +- .../src/screens/User/UserEdit/UserEdit.jsx | 4 +- .../screens/User/UserEdit/UserEdit.test.jsx | 2 +- .../src/screens/User/UserList/UserList.jsx | 16 ++++---- .../screens/User/UserList/UserList.test.jsx | 2 +- .../screens/User/UserList/UserListItem.jsx | 4 +- .../UserOrganizationList.jsx | 8 ++-- .../UserOrganizationList.test.jsx | 2 +- .../screens/User/UserRoles/UserRolesList.jsx | 16 ++++---- .../User/UserRoles/UserRolesList.test.jsx | 2 +- .../screens/User/UserTeams/UserTeamList.jsx | 20 +++++----- .../User/UserTeams/UserTeamList.test.jsx | 2 +- .../User/UserTeams/UserTeamListItem.jsx | 2 +- .../src/screens/User/UserToken/UserToken.jsx | 8 ++-- .../screens/User/UserToken/UserToken.test.jsx | 2 +- .../User/UserTokenAdd/UserTokenAdd.jsx | 6 +-- .../User/UserTokenAdd/UserTokenAdd.test.jsx | 2 +- .../User/UserTokenDetail/UserTokenDetail.jsx | 22 +++++----- .../UserTokenDetail/UserTokenDetail.test.jsx | 2 +- .../User/UserTokenList/UserTokenList.jsx | 16 ++++---- .../User/UserTokenList/UserTokenList.test.jsx | 2 +- .../User/UserTokenList/UserTokenListItem.jsx | 4 +- .../screens/User/UserTokens/UserTokens.jsx | 4 +- awx/ui_next/src/screens/User/Users.jsx | 4 +- .../src/screens/User/shared/UserForm.jsx | 14 +++---- .../src/screens/User/shared/UserForm.test.jsx | 2 +- .../src/screens/User/shared/UserTokenForm.jsx | 14 +++---- .../User/shared/UserTokenForm.test.jsx | 2 +- .../WorkflowApproval/WorkflowApproval.jsx | 8 ++-- .../WorkflowApproval.test.jsx | 2 +- .../WorkflowApprovalDetail.jsx | 22 +++++----- .../WorkflowApprovalDetail.test.jsx | 4 +- .../WorkflowApprovalList.jsx | 18 ++++----- .../WorkflowApprovalList.test.jsx | 2 +- .../WorkflowApprovalListApproveButton.jsx | 4 +- .../WorkflowApprovalListDenyButton.jsx | 4 +- .../WorkflowApprovalListItem.jsx | 4 +- .../useWsWorkflowApprovals.js | 4 +- .../WorkflowApproval/WorkflowApprovals.jsx | 2 +- .../WorkflowApprovals.test.jsx | 2 +- .../shared/WorkflowApprovalStatus.jsx | 4 +- .../shared/WorkflowApprovalStatus.test.jsx | 2 +- .../getRelatedResouceDeleteDetails.test.js | 10 ++--- .../util/getRelatedResourceDeleteDetails.js | 2 +- awx/ui_next/src/util/issuePendoIdentity.js | 2 +- awx/ui_next/src/util/jobs.js | 2 +- awx/ui_next/src/util/useBrandName.js | 2 +- 716 files changed, 2488 insertions(+), 2673 deletions(-) diff --git a/awx/ui_next/src/App.jsx b/awx/ui_next/src/App.jsx index 59a8e28cd9..77116d3f8b 100644 --- a/awx/ui_next/src/App.jsx +++ b/awx/ui_next/src/App.jsx @@ -16,21 +16,21 @@ import { ConfigProvider, useAuthorizedPath, useUserProfile, -} from './contexts/Config'; -import { SessionProvider, useSession } from './contexts/Session'; -import AppContainer from './components/AppContainer'; -import Background from './components/Background'; -import ContentError from './components/ContentError'; -import NotFound from './screens/NotFound'; -import Login from './screens/Login'; -import { isAuthenticated } from './util/auth'; -import { getLanguageWithoutRegionCode } from './util/language'; +} from 'contexts/Config'; +import { SessionProvider, useSession } from 'contexts/Session'; +import AppContainer from 'components/AppContainer'; +import Background from 'components/Background'; +import ContentError from 'components/ContentError'; +import NotFound from 'screens/NotFound'; +import Login from 'screens/Login'; +import { isAuthenticated } from 'util/auth'; +import { getLanguageWithoutRegionCode } from 'util/language'; +import Metrics from 'screens/Metrics'; +import SubscriptionEdit from 'screens/Setting/Subscription/SubscriptionEdit'; +import { RootAPI } from 'api'; import { dynamicActivate, locales } from './i18nLoader'; -import Metrics from './screens/Metrics'; import getRouteConfig from './routeConfig'; -import SubscriptionEdit from './screens/Setting/Subscription/SubscriptionEdit'; import { SESSION_REDIRECT_URL } from './constants'; -import { RootAPI } from './api'; function ErrorFallback({ error }) { return ( diff --git a/awx/ui_next/src/App.test.jsx b/awx/ui_next/src/App.test.jsx index a76d9634b5..a8b842714a 100644 --- a/awx/ui_next/src/App.test.jsx +++ b/awx/ui_next/src/App.test.jsx @@ -1,8 +1,8 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; +import { RootAPI } from 'api'; +import * as SessionContext from 'contexts/Session'; import { mountWithContexts } from '../testUtils/enzymeHelpers'; -import { RootAPI } from './api'; -import * as SessionContext from './contexts/Session'; import App from './App'; jest.mock('./api'); diff --git a/awx/ui_next/src/api/Base.js b/awx/ui_next/src/api/Base.js index 5081e20ab6..bc38870a8a 100644 --- a/awx/ui_next/src/api/Base.js +++ b/awx/ui_next/src/api/Base.js @@ -1,7 +1,7 @@ import axios from 'axios'; +import { encodeQueryString } from 'util/qs'; +import debounce from 'util/debounce'; import { SESSION_TIMEOUT_KEY } from '../constants'; -import { encodeQueryString } from '../util/qs'; -import debounce from '../util/debounce'; const updateStorage = debounce((key, val) => { window.localStorage.setItem(key, val); diff --git a/awx/ui_next/src/components/About/About.jsx b/awx/ui_next/src/components/About/About.jsx index 64073ddb57..f996fc7457 100644 --- a/awx/ui_next/src/components/About/About.jsx +++ b/awx/ui_next/src/components/About/About.jsx @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { t } from '@lingui/macro'; import { AboutModal } from '@patternfly/react-core'; -import useBrandName from '../../util/useBrandName'; +import useBrandName from 'util/useBrandName'; function About({ version, isOpen, onClose }) { const brandName = useBrandName(); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx index f85120f8f7..7104cfb6da 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx @@ -5,13 +5,13 @@ import { t } from '@lingui/macro'; import PropTypes from 'prop-types'; import { Button, DropdownItem } from '@patternfly/react-core'; -import useRequest, { useDismissableError } from '../../util/useRequest'; -import { InventoriesAPI, CredentialTypesAPI } from '../../api'; +import useRequest, { useDismissableError } from 'util/useRequest'; +import { InventoriesAPI, CredentialTypesAPI } from 'api'; +import { KebabifiedContext } from 'contexts/Kebabified'; import AlertModal from '../AlertModal'; import ErrorDetail from '../ErrorDetail'; import AdHocCommandsWizard from './AdHocCommandsWizard'; -import { KebabifiedContext } from '../../contexts/Kebabified'; import ContentError from '../ContentError'; function AdHocCommands({ adHocItems, hasListItems, onLaunchLoading }) { diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx index 3e279a92d7..1f201b60e8 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx @@ -1,16 +1,16 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; -import { - mountWithContexts, - waitForElement, -} from '../../../testUtils/enzymeHelpers'; import { CredentialTypesAPI, InventoriesAPI, CredentialsAPI, ExecutionEnvironmentsAPI, RootAPI, -} from '../../api'; +} from 'api'; +import { + mountWithContexts, + waitForElement, +} from '../../../testUtils/enzymeHelpers'; import AdHocCommands from './AdHocCommands'; jest.mock('../../api/models/CredentialTypes'); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx index c415df1104..c20da81f4f 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx @@ -1,10 +1,10 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; +import { CredentialsAPI, ExecutionEnvironmentsAPI, RootAPI } from 'api'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { CredentialsAPI, ExecutionEnvironmentsAPI, RootAPI } from '../../api'; import AdHocCommandsWizard from './AdHocCommandsWizard'; jest.mock('../../api/models/CredentialTypes'); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.jsx index 0246bf444d..7389e6a93d 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.jsx @@ -5,14 +5,14 @@ import { t } from '@lingui/macro'; import PropTypes from 'prop-types'; import { useField } from 'formik'; import { Form, FormGroup } from '@patternfly/react-core'; -import { CredentialsAPI } from '../../api'; +import { CredentialsAPI } from 'api'; +import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; +import useRequest from 'util/useRequest'; +import { required } from 'util/validators'; import Popover from '../Popover'; -import { getQSConfig, parseQueryString, mergeParams } from '../../util/qs'; -import useRequest from '../../util/useRequest'; import ContentError from '../ContentError'; import ContentLoading from '../ContentLoading'; -import { required } from '../../util/validators'; import OptionsList from '../OptionsList'; const QS_CONFIG = getQSConfig('credentials', { diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.jsx index 9513632834..0e54e79158 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.jsx @@ -1,11 +1,11 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { CredentialsAPI } from 'api'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { CredentialsAPI } from '../../api'; import AdHocCredentialStep from './AdHocCredentialStep'; jest.mock('../../api/models/Credentials'); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.jsx index e97780713a..155f6c77a2 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.jsx @@ -6,6 +6,8 @@ import PropTypes from 'prop-types'; import { useField } from 'formik'; import { Form, FormGroup, Switch, Checkbox } from '@patternfly/react-core'; import styled from 'styled-components'; +import { required } from 'util/validators'; +import useBrandName from 'util/useBrandName'; import AnsibleSelect from '../AnsibleSelect'; import FormField from '../FormField'; import { VariablesField } from '../CodeEditor'; @@ -15,8 +17,6 @@ import { FormCheckboxLayout, } from '../FormLayout'; import Popover from '../Popover'; -import { required } from '../../util/validators'; -import useBrandName from '../../util/useBrandName'; const TooltipWrapper = styled.div` text-align: left; diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.jsx index e71759f3cd..2a78ffe0d0 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.jsx @@ -1,8 +1,8 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { RootAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; -import { RootAPI } from '../../api'; import DetailsStep from './AdHocDetailsStep'; jest.mock('../../api/models/Credentials'); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx index a78a0a673c..7c2f2c1e36 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx @@ -1,11 +1,11 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { ExecutionEnvironmentsAPI } from 'api'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { ExecutionEnvironmentsAPI } from '../../api'; import AdHocExecutionEnvironmentStep from './AdHocExecutionEnvironmentStep'; jest.mock('../../api/models/ExecutionEnvironments'); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx index ea0a6ae9b4..d2d4e54029 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx @@ -3,11 +3,11 @@ import { useHistory } from 'react-router-dom'; import { t } from '@lingui/macro'; import { useField } from 'formik'; import { Form, FormGroup } from '@patternfly/react-core'; -import { ExecutionEnvironmentsAPI } from '../../api'; -import Popover from '../Popover'; +import { ExecutionEnvironmentsAPI } from 'api'; -import { parseQueryString, getQSConfig, mergeParams } from '../../util/qs'; -import useRequest from '../../util/useRequest'; +import { parseQueryString, getQSConfig, mergeParams } from 'util/qs'; +import useRequest from 'util/useRequest'; +import Popover from '../Popover'; import ContentError from '../ContentError'; import ContentLoading from '../ContentLoading'; import OptionsList from '../OptionsList'; diff --git a/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.jsx b/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.jsx index 8f5b97ae19..fba404f6d8 100644 --- a/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.jsx +++ b/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.jsx @@ -2,8 +2,8 @@ import React, { useState, useRef, useEffect, Fragment } from 'react'; import { t } from '@lingui/macro'; import PropTypes from 'prop-types'; import { Dropdown, DropdownPosition } from '@patternfly/react-core'; +import { useKebabifiedMenu } from 'contexts/Kebabified'; import { ToolbarAddButton } from '../PaginatedTable'; -import { useKebabifiedMenu } from '../../contexts/Kebabified'; function AddDropDownButton({ dropdownItems, ouiaId }) { const { isKebabified } = useKebabifiedMenu(); diff --git a/awx/ui_next/src/components/AddRole/AddResourceRole.jsx b/awx/ui_next/src/components/AddRole/AddResourceRole.jsx index 34bb4a0a9b..9e38dae844 100644 --- a/awx/ui_next/src/components/AddRole/AddResourceRole.jsx +++ b/awx/ui_next/src/components/AddRole/AddResourceRole.jsx @@ -2,11 +2,11 @@ import React, { Fragment, useState, useEffect } from 'react'; import PropTypes from 'prop-types'; import { useHistory } from 'react-router-dom'; import { t } from '@lingui/macro'; +import { TeamsAPI, UsersAPI } from 'api'; import SelectableCard from '../SelectableCard'; import Wizard from '../Wizard'; import SelectResourceStep from './SelectResourceStep'; import SelectRoleStep from './SelectRoleStep'; -import { TeamsAPI, UsersAPI } from '../../api'; const readUsers = async queryParams => UsersAPI.read(Object.assign(queryParams, { is_superuser: false })); diff --git a/awx/ui_next/src/components/AddRole/AddResourceRole.test.jsx b/awx/ui_next/src/components/AddRole/AddResourceRole.test.jsx index 53c450f0b9..4136d6e54c 100644 --- a/awx/ui_next/src/components/AddRole/AddResourceRole.test.jsx +++ b/awx/ui_next/src/components/AddRole/AddResourceRole.test.jsx @@ -4,12 +4,12 @@ import { shallow } from 'enzyme'; import { createMemoryHistory } from 'history'; import { act } from 'react-dom/test-utils'; +import { TeamsAPI, UsersAPI } from 'api'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; import AddResourceRole, { _AddResourceRole } from './AddResourceRole'; -import { TeamsAPI, UsersAPI } from '../../api'; jest.mock('../../api/models/Teams'); jest.mock('../../api/models/Users'); diff --git a/awx/ui_next/src/components/AddRole/SelectResourceStep.jsx b/awx/ui_next/src/components/AddRole/SelectResourceStep.jsx index abf3b8d10f..dfaefeb16d 100644 --- a/awx/ui_next/src/components/AddRole/SelectResourceStep.jsx +++ b/awx/ui_next/src/components/AddRole/SelectResourceStep.jsx @@ -2,12 +2,12 @@ import React, { Fragment, useCallback, useEffect } from 'react'; import PropTypes from 'prop-types'; import { withRouter, useLocation } from 'react-router-dom'; import { t } from '@lingui/macro'; -import useRequest from '../../util/useRequest'; -import { SearchColumns, SortColumns } from '../../types'; +import useRequest from 'util/useRequest'; +import { SearchColumns, SortColumns } from 'types'; +import { getQSConfig, parseQueryString } from 'util/qs'; import DataListToolbar from '../DataListToolbar'; import CheckboxListItem from '../CheckboxListItem'; import { SelectedList } from '../SelectedList'; -import { getQSConfig, parseQueryString } from '../../util/qs'; import PaginatedTable, { HeaderCell, HeaderRow } from '../PaginatedTable'; const QS_Config = sortColumns => { diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.jsx index 6dd0632af4..d1c31c305a 100644 --- a/awx/ui_next/src/components/AppContainer/AppContainer.jsx +++ b/awx/ui_next/src/components/AppContainer/AppContainer.jsx @@ -15,9 +15,9 @@ import { t, Plural } from '@lingui/macro'; import styled from 'styled-components'; -import { useConfig, useAuthorizedPath } from '../../contexts/Config'; -import { useSession } from '../../contexts/Session'; -import issuePendoIdentity from '../../util/issuePendoIdentity'; +import { useConfig, useAuthorizedPath } from 'contexts/Config'; +import { useSession } from 'contexts/Session'; +import issuePendoIdentity from 'util/issuePendoIdentity'; import About from '../About'; import BrandLogo from './BrandLogo'; import NavExpandableGroup from './NavExpandableGroup'; diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.test.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.test.jsx index ef168f0278..577ee1ba74 100644 --- a/awx/ui_next/src/components/AppContainer/AppContainer.test.jsx +++ b/awx/ui_next/src/components/AppContainer/AppContainer.test.jsx @@ -1,11 +1,11 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; +import { MeAPI, RootAPI } from 'api'; +import { useAuthorizedPath } from 'contexts/Config'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { MeAPI, RootAPI } from '../../api'; -import { useAuthorizedPath } from '../../contexts/Config'; import AppContainer from './AppContainer'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.jsx b/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.jsx index c00721f7a8..1682469ef0 100644 --- a/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.jsx +++ b/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.jsx @@ -20,10 +20,10 @@ import { QuestionCircleIcon, UserIcon, } from '@patternfly/react-icons'; -import { WorkflowApprovalsAPI } from '../../api'; -import useRequest from '../../util/useRequest'; -import getDocsBaseUrl from '../../util/getDocsBaseUrl'; -import { useConfig } from '../../contexts/Config'; +import { WorkflowApprovalsAPI } from 'api'; +import useRequest from 'util/useRequest'; +import getDocsBaseUrl from 'util/getDocsBaseUrl'; +import { useConfig } from 'contexts/Config'; import useWsPendingApprovalCount from './useWsPendingApprovalCount'; const PendingWorkflowApprovals = styled.div` diff --git a/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.jsx b/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.jsx index 0966c8bc4e..a326707c04 100644 --- a/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.jsx +++ b/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.jsx @@ -1,8 +1,8 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; +import { WorkflowApprovalsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import PageHeaderToolbar from './PageHeaderToolbar'; -import { WorkflowApprovalsAPI } from '../../api'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.js b/awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.js index d6b1edde4a..443a311823 100644 --- a/awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.js +++ b/awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.js @@ -1,6 +1,6 @@ import { useState, useEffect } from 'react'; -import useWebsocket from '../../util/useWebsocket'; -import useThrottle from '../../util/useThrottle'; +import useWebsocket from 'util/useWebsocket'; +import useThrottle from 'util/useThrottle'; export default function useWsPendingApprovalCount( initialCount, diff --git a/awx/ui_next/src/components/AssociateModal/AssociateModal.jsx b/awx/ui_next/src/components/AssociateModal/AssociateModal.jsx index 6c388091fc..e959d6395a 100644 --- a/awx/ui_next/src/components/AssociateModal/AssociateModal.jsx +++ b/awx/ui_next/src/components/AssociateModal/AssociateModal.jsx @@ -3,10 +3,10 @@ import { useHistory } from 'react-router-dom'; import { t } from '@lingui/macro'; import { Button, Modal } from '@patternfly/react-core'; +import useRequest from 'util/useRequest'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useSelected from 'util/useSelected'; import OptionsList from '../OptionsList'; -import useRequest from '../../util/useRequest'; -import { getQSConfig, parseQueryString } from '../../util/qs'; -import useSelected from '../../util/useSelected'; const QS_CONFIG = (order_by = 'name') => { return getQSConfig('associate', { diff --git a/awx/ui_next/src/components/CodeEditor/CodeEditor.jsx b/awx/ui_next/src/components/CodeEditor/CodeEditor.jsx index 3c36df348c..8aaa0516f0 100644 --- a/awx/ui_next/src/components/CodeEditor/CodeEditor.jsx +++ b/awx/ui_next/src/components/CodeEditor/CodeEditor.jsx @@ -11,7 +11,7 @@ import 'ace-builds/src-noconflict/theme-github'; import { t } from '@lingui/macro'; import styled from 'styled-components'; -import debounce from '../../util/debounce'; +import debounce from 'util/debounce'; config.set('loadWorkerFromBlob', false); diff --git a/awx/ui_next/src/components/CodeEditor/CodeEditor.test.jsx b/awx/ui_next/src/components/CodeEditor/CodeEditor.test.jsx index 69f498d2e3..c83544a788 100644 --- a/awx/ui_next/src/components/CodeEditor/CodeEditor.test.jsx +++ b/awx/ui_next/src/components/CodeEditor/CodeEditor.test.jsx @@ -1,7 +1,7 @@ import React from 'react'; +import debounce from 'util/debounce'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import CodeEditor from './CodeEditor'; -import debounce from '../../util/debounce'; jest.mock('../../util/debounce'); diff --git a/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx b/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx index 55c0fa1883..bd1926b5ea 100644 --- a/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx +++ b/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx @@ -11,15 +11,10 @@ import { Modal, } from '@patternfly/react-core'; import { ExpandArrowsAltIcon } from '@patternfly/react-icons'; +import { yamlToJson, jsonToYaml, isJsonObject, isJsonString } from 'util/yaml'; import { DetailName, DetailValue } from '../DetailList'; import MultiButtonToggle from '../MultiButtonToggle'; import Popover from '../Popover'; -import { - yamlToJson, - jsonToYaml, - isJsonObject, - isJsonString, -} from '../../util/yaml'; import CodeEditor from './CodeEditor'; import { JSON_MODE, YAML_MODE } from './constants'; diff --git a/awx/ui_next/src/components/CodeEditor/VariablesField.jsx b/awx/ui_next/src/components/CodeEditor/VariablesField.jsx index 71b1dc8581..41942d1643 100644 --- a/awx/ui_next/src/components/CodeEditor/VariablesField.jsx +++ b/awx/ui_next/src/components/CodeEditor/VariablesField.jsx @@ -6,9 +6,9 @@ import { useField } from 'formik'; import styled from 'styled-components'; import { Split, SplitItem, Button, Modal } from '@patternfly/react-core'; import { ExpandArrowsAltIcon } from '@patternfly/react-icons'; +import { yamlToJson, jsonToYaml, isJsonString } from 'util/yaml'; import { CheckboxField } from '../FormField'; import MultiButtonToggle from '../MultiButtonToggle'; -import { yamlToJson, jsonToYaml, isJsonString } from '../../util/yaml'; import CodeEditor from './CodeEditor'; import Popover from '../Popover'; import { JSON_MODE, YAML_MODE } from './constants'; diff --git a/awx/ui_next/src/components/CodeEditor/VariablesInput.jsx b/awx/ui_next/src/components/CodeEditor/VariablesInput.jsx index 09c68a7247..c75f6df519 100644 --- a/awx/ui_next/src/components/CodeEditor/VariablesInput.jsx +++ b/awx/ui_next/src/components/CodeEditor/VariablesInput.jsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { string, func, bool, number } from 'prop-types'; import { Split, SplitItem } from '@patternfly/react-core'; import styled from 'styled-components'; -import { yamlToJson, jsonToYaml, isJsonString } from '../../util/yaml'; +import { yamlToJson, jsonToYaml, isJsonString } from 'util/yaml'; import MultiButtonToggle from '../MultiButtonToggle'; import CodeEditor from './CodeEditor'; import { JSON_MODE, YAML_MODE } from './constants'; diff --git a/awx/ui_next/src/components/ContentError/ContentError.jsx b/awx/ui_next/src/components/ContentError/ContentError.jsx index 6ac256ec26..ef05510898 100644 --- a/awx/ui_next/src/components/ContentError/ContentError.jsx +++ b/awx/ui_next/src/components/ContentError/ContentError.jsx @@ -10,7 +10,7 @@ import { EmptyStateBody, } from '@patternfly/react-core'; import { ExclamationTriangleIcon } from '@patternfly/react-icons'; -import { useSession } from '../../contexts/Session'; +import { useSession } from 'contexts/Session'; import ErrorDetail from '../ErrorDetail'; function ContentError({ error, children, isNotFound }) { diff --git a/awx/ui_next/src/components/CopyButton/CopyButton.jsx b/awx/ui_next/src/components/CopyButton/CopyButton.jsx index 6923ee16f0..021f1a8e81 100644 --- a/awx/ui_next/src/components/CopyButton/CopyButton.jsx +++ b/awx/ui_next/src/components/CopyButton/CopyButton.jsx @@ -3,7 +3,7 @@ import { t } from '@lingui/macro'; import PropTypes from 'prop-types'; import { Button } from '@patternfly/react-core'; import { CopyIcon } from '@patternfly/react-icons'; -import useRequest, { useDismissableError } from '../../util/useRequest'; +import useRequest, { useDismissableError } from 'util/useRequest'; import AlertModal from '../AlertModal'; import ErrorDetail from '../ErrorDetail'; diff --git a/awx/ui_next/src/components/CredentialChip/CredentialChip.jsx b/awx/ui_next/src/components/CredentialChip/CredentialChip.jsx index 04f7894730..0c4780ced6 100644 --- a/awx/ui_next/src/components/CredentialChip/CredentialChip.jsx +++ b/awx/ui_next/src/components/CredentialChip/CredentialChip.jsx @@ -2,8 +2,8 @@ import React from 'react'; import { t } from '@lingui/macro'; import { Chip } from '@patternfly/react-core'; -import { Credential } from '../../types'; -import { toTitleCase } from '../../util/strings'; +import { Credential } from 'types'; +import { toTitleCase } from 'util/strings'; function CredentialChip({ credential, ...props }) { let type; diff --git a/awx/ui_next/src/components/DataListToolbar/DataListToolbar.jsx b/awx/ui_next/src/components/DataListToolbar/DataListToolbar.jsx index 57f135d05c..92c33625aa 100644 --- a/awx/ui_next/src/components/DataListToolbar/DataListToolbar.jsx +++ b/awx/ui_next/src/components/DataListToolbar/DataListToolbar.jsx @@ -20,11 +20,11 @@ import { AngleRightIcon, SearchIcon, } from '@patternfly/react-icons'; +import { SearchColumns, SortColumns, QSConfig } from 'types'; +import { KebabifiedProvider } from 'contexts/Kebabified'; import ExpandCollapse from '../ExpandCollapse'; import Search from '../Search'; import Sort from '../Sort'; -import { SearchColumns, SortColumns, QSConfig } from '../../types'; -import { KebabifiedProvider } from '../../contexts/Kebabified'; const ToolbarContent = styled(PFToolbarContent)` & > .pf-c-toolbar__content-section { diff --git a/awx/ui_next/src/components/DeleteButton/DeleteButton.jsx b/awx/ui_next/src/components/DeleteButton/DeleteButton.jsx index 24a7f24fd5..fef07fb892 100644 --- a/awx/ui_next/src/components/DeleteButton/DeleteButton.jsx +++ b/awx/ui_next/src/components/DeleteButton/DeleteButton.jsx @@ -4,8 +4,8 @@ import PropTypes from 'prop-types'; import { t } from '@lingui/macro'; import styled from 'styled-components'; import { Button, Badge, Alert, Tooltip } from '@patternfly/react-core'; +import { getRelatedResourceDeleteCounts } from 'util/getRelatedResourceDeleteDetails'; import AlertModal from '../AlertModal'; -import { getRelatedResourceDeleteCounts } from '../../util/getRelatedResourceDeleteDetails'; import ErrorDetail from '../ErrorDetail'; const WarningMessage = styled(Alert)` diff --git a/awx/ui_next/src/components/DeleteButton/DeleteButton.test.jsx b/awx/ui_next/src/components/DeleteButton/DeleteButton.test.jsx index 966fd9b74b..18f9f47126 100644 --- a/awx/ui_next/src/components/DeleteButton/DeleteButton.test.jsx +++ b/awx/ui_next/src/components/DeleteButton/DeleteButton.test.jsx @@ -1,10 +1,10 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; +import { CredentialsAPI } from 'api'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { CredentialsAPI } from '../../api'; import DeleteButton from './DeleteButton'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx b/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx index 6f58783fea..66a8e03726 100644 --- a/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx +++ b/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx @@ -2,7 +2,7 @@ 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 { formatDateString } from 'util/dates'; import _Detail from './Detail'; const Detail = styled(_Detail)` diff --git a/awx/ui_next/src/components/DetailList/UserDateDetail.jsx b/awx/ui_next/src/components/DetailList/UserDateDetail.jsx index 29826175c5..ca42adde3c 100644 --- a/awx/ui_next/src/components/DetailList/UserDateDetail.jsx +++ b/awx/ui_next/src/components/DetailList/UserDateDetail.jsx @@ -3,9 +3,9 @@ import { node, string } from 'prop-types'; import { Trans } from '@lingui/macro'; import { Link } from 'react-router-dom'; import styled from 'styled-components'; -import { formatDateString } from '../../util/dates'; +import { formatDateString } from 'util/dates'; +import { SummaryFieldUser } from 'types'; import _Detail from './Detail'; -import { SummaryFieldUser } from '../../types'; const Detail = styled(_Detail)` word-break: break-word; diff --git a/awx/ui_next/src/components/DisassociateButton/DisassociateButton.jsx b/awx/ui_next/src/components/DisassociateButton/DisassociateButton.jsx index 697dc6b304..17b2a9b157 100644 --- a/awx/ui_next/src/components/DisassociateButton/DisassociateButton.jsx +++ b/awx/ui_next/src/components/DisassociateButton/DisassociateButton.jsx @@ -4,7 +4,7 @@ import { arrayOf, func, shape, string, oneOfType, number } from 'prop-types'; import { t } from '@lingui/macro'; import { Button, Tooltip, DropdownItem } from '@patternfly/react-core'; import styled from 'styled-components'; -import { KebabifiedContext } from '../../contexts/Kebabified'; +import { KebabifiedContext } from 'contexts/Kebabified'; import AlertModal from '../AlertModal'; diff --git a/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx b/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx index 7a1f26724c..d59097310f 100644 --- a/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx +++ b/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx @@ -5,10 +5,10 @@ import { t, Trans } from '@lingui/macro'; import { Popover, Tooltip } from '@patternfly/react-core'; import styled from 'styled-components'; import { ExclamationTriangleIcon as PFExclamationTriangleIcon } from '@patternfly/react-icons'; +import { ExecutionEnvironment } from 'types'; +import getDocsBaseUrl from 'util/getDocsBaseUrl'; +import { useConfig } from 'contexts/Config'; import { Detail } from '../DetailList'; -import { ExecutionEnvironment } from '../../types'; -import getDocsBaseUrl from '../../util/getDocsBaseUrl'; -import { useConfig } from '../../contexts/Config'; const ExclamationTriangleIcon = styled(PFExclamationTriangleIcon)` color: var(--pf-global--warning-color--100); diff --git a/awx/ui_next/src/components/HostForm/HostForm.jsx b/awx/ui_next/src/components/HostForm/HostForm.jsx index fb8f231262..d7b358d5c0 100644 --- a/awx/ui_next/src/components/HostForm/HostForm.jsx +++ b/awx/ui_next/src/components/HostForm/HostForm.jsx @@ -3,13 +3,13 @@ import { bool, func, shape } from 'prop-types'; import { Formik, useField, useFormikContext } from 'formik'; import { t } from '@lingui/macro'; import { Form, FormGroup, Tooltip } from '@patternfly/react-core'; +import { required } from 'util/validators'; import FormField, { FormSubmitError } from '../FormField'; import FormActionGroup from '../FormActionGroup/FormActionGroup'; import { VariablesField } from '../CodeEditor'; import { InventoryLookup } from '../Lookup'; import { FormColumnLayout, FormFullWidthLayout } from '../FormLayout'; import Popover from '../Popover'; -import { required } from '../../util/validators'; const InventoryLookupField = ({ isDisabled }) => { const { setFieldValue, setFieldTouched } = useFormikContext(); diff --git a/awx/ui_next/src/components/HostToggle/HostToggle.jsx b/awx/ui_next/src/components/HostToggle/HostToggle.jsx index 4a7b03d55a..d590583fc9 100644 --- a/awx/ui_next/src/components/HostToggle/HostToggle.jsx +++ b/awx/ui_next/src/components/HostToggle/HostToggle.jsx @@ -3,10 +3,10 @@ import React, { Fragment, useState, useEffect, useCallback } from 'react'; import { t } from '@lingui/macro'; import { Switch, Tooltip } from '@patternfly/react-core'; +import useRequest from 'util/useRequest'; +import { HostsAPI } from 'api'; import AlertModal from '../AlertModal'; import ErrorDetail from '../ErrorDetail'; -import useRequest from '../../util/useRequest'; -import { HostsAPI } from '../../api'; function HostToggle({ className, diff --git a/awx/ui_next/src/components/HostToggle/HostToggle.test.jsx b/awx/ui_next/src/components/HostToggle/HostToggle.test.jsx index 7391036bf2..6c211f7bde 100644 --- a/awx/ui_next/src/components/HostToggle/HostToggle.test.jsx +++ b/awx/ui_next/src/components/HostToggle/HostToggle.test.jsx @@ -1,6 +1,6 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; -import { HostsAPI } from '../../api'; +import { HostsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import HostToggle from './HostToggle'; diff --git a/awx/ui_next/src/components/InstanceToggle/InstanceToggle.jsx b/awx/ui_next/src/components/InstanceToggle/InstanceToggle.jsx index 7865d2d312..476c55d694 100644 --- a/awx/ui_next/src/components/InstanceToggle/InstanceToggle.jsx +++ b/awx/ui_next/src/components/InstanceToggle/InstanceToggle.jsx @@ -2,11 +2,11 @@ import React, { useState, useEffect, useCallback } from 'react'; import { t } from '@lingui/macro'; import { Switch, Tooltip } from '@patternfly/react-core'; -import AlertModal from '../AlertModal'; +import useRequest from 'util/useRequest'; +import { InstancesAPI } from 'api'; +import { useConfig } from 'contexts/Config'; import ErrorDetail from '../ErrorDetail'; -import useRequest from '../../util/useRequest'; -import { InstancesAPI } from '../../api'; -import { useConfig } from '../../contexts/Config'; +import AlertModal from '../AlertModal'; function InstanceToggle({ className, fetchInstances, instance, onToggle }) { const { me = {} } = useConfig(); diff --git a/awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.jsx b/awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.jsx index 6ac9dbda7e..bb5ad02065 100644 --- a/awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.jsx +++ b/awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.jsx @@ -1,6 +1,6 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; -import { InstancesAPI } from '../../api'; +import { InstancesAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import InstanceToggle from './InstanceToggle'; diff --git a/awx/ui_next/src/components/JobCancelButton/JobCancelButton.jsx b/awx/ui_next/src/components/JobCancelButton/JobCancelButton.jsx index b9098836e5..7e0d470d06 100644 --- a/awx/ui_next/src/components/JobCancelButton/JobCancelButton.jsx +++ b/awx/ui_next/src/components/JobCancelButton/JobCancelButton.jsx @@ -2,8 +2,8 @@ import React, { useCallback, useState } from 'react'; import { t } from '@lingui/macro'; import { MinusCircleIcon } from '@patternfly/react-icons'; import { Button, Tooltip } from '@patternfly/react-core'; -import { getJobModel } from '../../util/jobs'; -import useRequest, { useDismissableError } from '../../util/useRequest'; +import { getJobModel } from 'util/jobs'; +import useRequest, { useDismissableError } from 'util/useRequest'; import AlertModal from '../AlertModal'; import ErrorDetail from '../ErrorDetail'; diff --git a/awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.jsx b/awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.jsx index dd98838ac2..8c381e021c 100644 --- a/awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.jsx +++ b/awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.jsx @@ -6,7 +6,7 @@ import { SystemJobsAPI, WorkflowJobsAPI, JobsAPI, -} from '../../api'; +} from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import JobCancelButton from './JobCancelButton'; diff --git a/awx/ui_next/src/components/JobList/JobList.jsx b/awx/ui_next/src/components/JobList/JobList.jsx index 83e8e8f851..c150f6eea7 100644 --- a/awx/ui_next/src/components/JobList/JobList.jsx +++ b/awx/ui_next/src/components/JobList/JobList.jsx @@ -3,6 +3,16 @@ import { useLocation } from 'react-router-dom'; import { t, Plural } from '@lingui/macro'; import { Card } from '@patternfly/react-core'; +import useRequest, { + useDeleteItems, + useDismissableError, +} from 'util/useRequest'; +import { useConfig } from 'contexts/Config'; +import useSelected from 'util/useSelected'; +import useExpanded from 'util/useExpanded'; +import { isJobRunning, getJobModel } from 'util/jobs'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import { UnifiedJobsAPI } from 'api'; import AlertModal from '../AlertModal'; import DatalistToolbar from '../DataListToolbar'; import ErrorDetail from '../ErrorDetail'; @@ -11,19 +21,9 @@ import PaginatedTable, { HeaderCell, ToolbarDeleteButton, } from '../PaginatedTable'; -import useRequest, { - useDeleteItems, - useDismissableError, -} from '../../util/useRequest'; -import { useConfig } from '../../contexts/Config'; -import useSelected from '../../util/useSelected'; -import useExpanded from '../../util/useExpanded'; -import { isJobRunning, getJobModel } from '../../util/jobs'; -import { getQSConfig, parseQueryString } from '../../util/qs'; import JobListItem from './JobListItem'; import JobListCancelButton from './JobListCancelButton'; import useWsJobs from './useWsJobs'; -import { UnifiedJobsAPI } from '../../api'; function JobList({ defaultParams, showTypeColumn = false }) { const qsConfig = getQSConfig( diff --git a/awx/ui_next/src/components/JobList/JobList.test.jsx b/awx/ui_next/src/components/JobList/JobList.test.jsx index 494c8614db..36b8bd9054 100644 --- a/awx/ui_next/src/components/JobList/JobList.test.jsx +++ b/awx/ui_next/src/components/JobList/JobList.test.jsx @@ -1,9 +1,5 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; -import { - mountWithContexts, - waitForElement, -} from '../../../testUtils/enzymeHelpers'; import { AdHocCommandsAPI, InventoryUpdatesAPI, @@ -12,7 +8,11 @@ import { SystemJobsAPI, UnifiedJobsAPI, WorkflowJobsAPI, -} from '../../api'; +} from 'api'; +import { + mountWithContexts, + waitForElement, +} from '../../../testUtils/enzymeHelpers'; import JobList from './JobList'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/JobList/JobListCancelButton.jsx b/awx/ui_next/src/components/JobList/JobListCancelButton.jsx index 225acadf45..05eebaa7cc 100644 --- a/awx/ui_next/src/components/JobList/JobListCancelButton.jsx +++ b/awx/ui_next/src/components/JobList/JobListCancelButton.jsx @@ -3,10 +3,10 @@ import React, { useContext, useEffect, useState } from 'react'; import { t, Plural } from '@lingui/macro'; import { arrayOf, func } from 'prop-types'; import { Button, DropdownItem, Tooltip } from '@patternfly/react-core'; -import { KebabifiedContext } from '../../contexts/Kebabified'; -import { isJobRunning } from '../../util/jobs'; +import { KebabifiedContext } from 'contexts/Kebabified'; +import { isJobRunning } from 'util/jobs'; +import { Job } from 'types'; import AlertModal from '../AlertModal'; -import { Job } from '../../types'; function cannotCancelBecausePermissions(job) { return ( diff --git a/awx/ui_next/src/components/JobList/JobListItem.jsx b/awx/ui_next/src/components/JobList/JobListItem.jsx index 22edb4b8b1..2dfb741c31 100644 --- a/awx/ui_next/src/components/JobList/JobListItem.jsx +++ b/awx/ui_next/src/components/JobList/JobListItem.jsx @@ -6,6 +6,8 @@ import { Button, Chip } from '@patternfly/react-core'; import { Tr, Td, ExpandableRowContent } from '@patternfly/react-table'; import { RocketIcon } from '@patternfly/react-icons'; import styled from 'styled-components'; +import { formatDateString } from 'util/dates'; +import { isJobRunning } from 'util/jobs'; import { ActionsTd, ActionItem } from '../PaginatedTable'; import { LaunchButton, ReLaunchDropDown } from '../LaunchButton'; import StatusLabel from '../StatusLabel'; @@ -13,8 +15,6 @@ import { DetailList, Detail, LaunchedByDetail } from '../DetailList'; import ChipGroup from '../ChipGroup'; import CredentialChip from '../CredentialChip'; import ExecutionEnvironmentDetail from '../ExecutionEnvironmentDetail'; -import { formatDateString } from '../../util/dates'; -import { isJobRunning } from '../../util/jobs'; import { JOB_TYPE_URL_SEGMENTS } from '../../constants'; import JobCancelButton from '../JobCancelButton'; diff --git a/awx/ui_next/src/components/JobList/useWsJobs.js b/awx/ui_next/src/components/JobList/useWsJobs.js index 4560930818..e2bd5ff137 100644 --- a/awx/ui_next/src/components/JobList/useWsJobs.js +++ b/awx/ui_next/src/components/JobList/useWsJobs.js @@ -1,8 +1,8 @@ import { useState, useEffect } from 'react'; import { useLocation } from 'react-router-dom'; -import useWebsocket from '../../util/useWebsocket'; -import useThrottle from '../../util/useThrottle'; -import { parseQueryString } from '../../util/qs'; +import useWebsocket from 'util/useWebsocket'; +import useThrottle from 'util/useThrottle'; +import { parseQueryString } from 'util/qs'; import sortJobs from './sortJobs'; export default function useWsJobs(initialJobs, fetchJobsById, qsConfig) { diff --git a/awx/ui_next/src/components/LaunchButton/LaunchButton.jsx b/awx/ui_next/src/components/LaunchButton/LaunchButton.jsx index 16430d803c..cc839a45b9 100644 --- a/awx/ui_next/src/components/LaunchButton/LaunchButton.jsx +++ b/awx/ui_next/src/components/LaunchButton/LaunchButton.jsx @@ -4,8 +4,6 @@ import { number, shape } from 'prop-types'; import { t } from '@lingui/macro'; -import AlertModal from '../AlertModal'; -import ErrorDetail from '../ErrorDetail'; import { AdHocCommandsAPI, InventorySourcesAPI, @@ -14,7 +12,9 @@ import { ProjectsAPI, WorkflowJobsAPI, WorkflowJobTemplatesAPI, -} from '../../api'; +} from 'api'; +import AlertModal from '../AlertModal'; +import ErrorDetail from '../ErrorDetail'; import LaunchPrompt from '../LaunchPrompt'; function canLaunchWithoutPrompt(launchData) { diff --git a/awx/ui_next/src/components/LaunchButton/LaunchButton.test.jsx b/awx/ui_next/src/components/LaunchButton/LaunchButton.test.jsx index ccc02edc04..888523ce62 100644 --- a/awx/ui_next/src/components/LaunchButton/LaunchButton.test.jsx +++ b/awx/ui_next/src/components/LaunchButton/LaunchButton.test.jsx @@ -1,10 +1,6 @@ import React from 'react'; import { createMemoryHistory } from 'history'; import { act } from 'react-dom/test-utils'; -import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; -import { sleep } from '../../../testUtils/testUtils'; - -import LaunchButton from './LaunchButton'; import { InventorySourcesAPI, JobsAPI, @@ -12,7 +8,11 @@ import { ProjectsAPI, WorkflowJobsAPI, WorkflowJobTemplatesAPI, -} from '../../api'; +} from 'api'; +import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; +import { sleep } from '../../../testUtils/testUtils'; + +import LaunchButton from './LaunchButton'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx index 9dc05b3ca8..0f2fb1aedf 100644 --- a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx @@ -2,11 +2,11 @@ import React, { useState } from 'react'; import { ExpandableSection, Wizard } from '@patternfly/react-core'; import { t } from '@lingui/macro'; import { Formik, useFormikContext } from 'formik'; -import ContentError from '../ContentError'; +import { useDismissableError } from 'util/useRequest'; +import mergeExtraVars from 'util/prompt/mergeExtraVars'; +import getSurveyValues from 'util/prompt/getSurveyValues'; import ContentLoading from '../ContentLoading'; -import { useDismissableError } from '../../util/useRequest'; -import mergeExtraVars from '../../util/prompt/mergeExtraVars'; -import getSurveyValues from '../../util/prompt/getSurveyValues'; +import ContentError from '../ContentError'; import useLaunchSteps from './useLaunchSteps'; import AlertModal from '../AlertModal'; diff --git a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx index 366437fdf7..27263d479c 100644 --- a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx @@ -1,5 +1,11 @@ import React from 'react'; import { act, isElementOfType } from 'react-dom/test-utils'; +import { + InventoriesAPI, + CredentialsAPI, + CredentialTypesAPI, + JobTemplatesAPI, +} from 'api'; import { mountWithContexts, waitForElement, @@ -10,12 +16,6 @@ import CredentialsStep from './steps/CredentialsStep'; import CredentialPasswordsStep from './steps/CredentialPasswordsStep'; import OtherPromptsStep from './steps/OtherPromptsStep'; import PreviewStep from './steps/PreviewStep'; -import { - InventoriesAPI, - CredentialsAPI, - CredentialTypesAPI, - JobTemplatesAPI, -} from '../../api'; jest.mock('../../api/models/Inventories'); jest.mock('../../api/models/CredentialTypes'); diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.jsx index dd6ebefc9c..e04efda7a6 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.jsx @@ -6,14 +6,14 @@ import { t } from '@lingui/macro'; import { useField } from 'formik'; import styled from 'styled-components'; import { Alert, ToolbarItem } from '@patternfly/react-core'; -import { CredentialsAPI, CredentialTypesAPI } from '../../../api'; +import { CredentialsAPI, CredentialTypesAPI } from 'api'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useRequest from 'util/useRequest'; import AnsibleSelect from '../../AnsibleSelect'; import OptionsList from '../../OptionsList'; import ContentLoading from '../../ContentLoading'; import CredentialChip from '../../CredentialChip'; import ContentError from '../../ContentError'; -import { getQSConfig, parseQueryString } from '../../../util/qs'; -import useRequest from '../../../util/useRequest'; import credentialsValidator from './credentialsValidator'; const CredentialErrorAlert = styled(Alert)` diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.jsx index 3b6855f0b9..e826346876 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { CredentialsAPI, CredentialTypesAPI } from 'api'; import { mountWithContexts } from '../../../../testUtils/enzymeHelpers'; import CredentialsStep from './CredentialsStep'; -import { CredentialsAPI, CredentialTypesAPI } from '../../../api'; jest.mock('../../../api/models/CredentialTypes'); jest.mock('../../../api/models/Credentials'); diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.jsx index 123a157cdb..d391b326c5 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.jsx @@ -5,9 +5,9 @@ import { t } from '@lingui/macro'; import { useField } from 'formik'; import styled from 'styled-components'; import { Alert } from '@patternfly/react-core'; -import { InventoriesAPI } from '../../../api'; -import { getQSConfig, parseQueryString } from '../../../util/qs'; -import useRequest from '../../../util/useRequest'; +import { InventoriesAPI } from 'api'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useRequest from 'util/useRequest'; import OptionsList from '../../OptionsList'; import ContentLoading from '../../ContentLoading'; import ContentError from '../../ContentError'; diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.jsx index e7ca020efa..72e4291d69 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { InventoriesAPI } from 'api'; import { mountWithContexts } from '../../../../testUtils/enzymeHelpers'; import InventoryStep from './InventoryStep'; -import { InventoriesAPI } from '../../../api'; jest.mock('../../../api/models/Inventories'); diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.jsx index e4bc717ec4..4a33c8cdb5 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.jsx @@ -6,10 +6,8 @@ import { t } from '@lingui/macro'; import { useFormikContext } from 'formik'; import yaml from 'js-yaml'; -import mergeExtraVars, { - maskPasswords, -} from '../../../util/prompt/mergeExtraVars'; -import getSurveyValues from '../../../util/prompt/getSurveyValues'; +import mergeExtraVars, { maskPasswords } from 'util/prompt/mergeExtraVars'; +import getSurveyValues from 'util/prompt/getSurveyValues'; import PromptDetail from '../../PromptDetail'; const ExclamationCircleIcon = styled(PFExclamationCircleIcon)` diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx index 07d96b335d..d840dbe80d 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx @@ -8,8 +8,6 @@ import { SelectOption, SelectVariant, } from '@patternfly/react-core'; -import FormField from '../../FormField'; -import Popover from '../../Popover'; import { required, minMaxValue, @@ -17,8 +15,10 @@ import { minLength, integer, combine, -} from '../../../util/validators'; -import { Survey } from '../../../types'; +} from 'util/validators'; +import { Survey } from 'types'; +import FormField from '../../FormField'; +import Popover from '../../Popover'; function SurveyStep({ surveyConfig }) { const fieldTypes = { diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx index d874d32995..6603d4bf48 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import { t } from '@lingui/macro'; import { useField } from 'formik'; -import { jsonToYaml, yamlToJson } from '../../../util/yaml'; +import { jsonToYaml, yamlToJson } from 'util/yaml'; import OtherPromptsStep from './OtherPromptsStep'; import StepName from './StepName'; diff --git a/awx/ui_next/src/components/ListHeader/ListHeader.jsx b/awx/ui_next/src/components/ListHeader/ListHeader.jsx index b974f1d410..1e7264762d 100644 --- a/awx/ui_next/src/components/ListHeader/ListHeader.jsx +++ b/awx/ui_next/src/components/ListHeader/ListHeader.jsx @@ -3,15 +3,15 @@ import PropTypes from 'prop-types'; import { withRouter } from 'react-router-dom'; import styled from 'styled-components'; import { Toolbar, ToolbarContent } from '@patternfly/react-core'; -import DataListToolbar from '../DataListToolbar'; import { parseQueryString, mergeParams, removeParams, updateQueryString, -} from '../../util/qs'; -import { QSConfig, SearchColumns, SortColumns } from '../../types'; +} from 'util/qs'; +import { QSConfig, SearchColumns, SortColumns } from 'types'; +import DataListToolbar from '../DataListToolbar'; const EmptyStateControlsWrapper = styled.div` display: flex; diff --git a/awx/ui_next/src/components/Lookup/ApplicationLookup.jsx b/awx/ui_next/src/components/Lookup/ApplicationLookup.jsx index a1ab723c70..6a5b98d1b6 100644 --- a/awx/ui_next/src/components/Lookup/ApplicationLookup.jsx +++ b/awx/ui_next/src/components/Lookup/ApplicationLookup.jsx @@ -3,12 +3,12 @@ import { func, node, string } from 'prop-types'; import { withRouter, useLocation } from 'react-router-dom'; import { t } from '@lingui/macro'; import { FormGroup } from '@patternfly/react-core'; -import { ApplicationsAPI } from '../../api'; -import { Application } from '../../types'; -import { getQSConfig, parseQueryString } from '../../util/qs'; +import { ApplicationsAPI } from 'api'; +import { Application } from 'types'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useRequest from 'util/useRequest'; import Lookup from './Lookup'; import OptionsList from '../OptionsList'; -import useRequest from '../../util/useRequest'; import LookupErrorMessage from './shared/LookupErrorMessage'; const QS_CONFIG = getQSConfig('applications', { diff --git a/awx/ui_next/src/components/Lookup/ApplicationLookup.test.jsx b/awx/ui_next/src/components/Lookup/ApplicationLookup.test.jsx index 10eac993bb..9c9cb6b481 100644 --- a/awx/ui_next/src/components/Lookup/ApplicationLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/ApplicationLookup.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { ApplicationsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import ApplicationLookup from './ApplicationLookup'; -import { ApplicationsAPI } from '../../api'; jest.mock('../../api'); const application = { diff --git a/awx/ui_next/src/components/Lookup/CredentialLookup.jsx b/awx/ui_next/src/components/Lookup/CredentialLookup.jsx index 97edad1d97..68b1c00eeb 100644 --- a/awx/ui_next/src/components/Lookup/CredentialLookup.jsx +++ b/awx/ui_next/src/components/Lookup/CredentialLookup.jsx @@ -12,14 +12,14 @@ import { import { t } from '@lingui/macro'; import { FormGroup } from '@patternfly/react-core'; -import { CredentialsAPI } from '../../api'; -import { Credential } from '../../types'; -import { getQSConfig, parseQueryString, mergeParams } from '../../util/qs'; +import { CredentialsAPI } from 'api'; +import { Credential } from 'types'; +import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; +import useAutoPopulateLookup from 'util/useAutoPopulateLookup'; +import useRequest from 'util/useRequest'; import Popover from '../Popover'; import Lookup from './Lookup'; import OptionsList from '../OptionsList'; -import useAutoPopulateLookup from '../../util/useAutoPopulateLookup'; -import useRequest from '../../util/useRequest'; import LookupErrorMessage from './shared/LookupErrorMessage'; const QS_CONFIG = getQSConfig('credentials', { diff --git a/awx/ui_next/src/components/Lookup/CredentialLookup.test.jsx b/awx/ui_next/src/components/Lookup/CredentialLookup.test.jsx index 7ed5910816..3a5c8bdaee 100644 --- a/awx/ui_next/src/components/Lookup/CredentialLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/CredentialLookup.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { CredentialsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import CredentialLookup, { _CredentialLookup } from './CredentialLookup'; -import { CredentialsAPI } from '../../api'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.jsx b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.jsx index 524b4f7cad..0d4de7dec7 100644 --- a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.jsx +++ b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.jsx @@ -3,12 +3,12 @@ import { string, func, bool, oneOfType, number } from 'prop-types'; import { useLocation } from 'react-router-dom'; import { t } from '@lingui/macro'; import { FormGroup, Tooltip } from '@patternfly/react-core'; -import { ExecutionEnvironmentsAPI, ProjectsAPI } from '../../api'; -import { ExecutionEnvironment } from '../../types'; -import { getQSConfig, parseQueryString, mergeParams } from '../../util/qs'; +import { ExecutionEnvironmentsAPI, ProjectsAPI } from 'api'; +import { ExecutionEnvironment } from 'types'; +import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; +import useRequest from 'util/useRequest'; import Popover from '../Popover'; import OptionsList from '../OptionsList'; -import useRequest from '../../util/useRequest'; import Lookup from './Lookup'; import LookupErrorMessage from './shared/LookupErrorMessage'; diff --git a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.jsx b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.jsx index 339f8235f7..d110059a9b 100644 --- a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { ExecutionEnvironmentsAPI, ProjectsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import ExecutionEnvironmentLookup from './ExecutionEnvironmentLookup'; -import { ExecutionEnvironmentsAPI, ProjectsAPI } from '../../api'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/Lookup/HostFilterLookup.jsx b/awx/ui_next/src/components/Lookup/HostFilterLookup.jsx index cb1c6411ee..ee232aecbb 100644 --- a/awx/ui_next/src/components/Lookup/HostFilterLookup.jsx +++ b/awx/ui_next/src/components/Lookup/HostFilterLookup.jsx @@ -14,15 +14,15 @@ import { Modal, Tooltip, } from '@patternfly/react-core'; +import { HostsAPI } from 'api'; +import { getQSConfig, mergeParams, parseQueryString } from 'util/qs'; +import useRequest, { useDismissableError } from 'util/useRequest'; import ChipGroup from '../ChipGroup'; import Popover from '../Popover'; import DataListToolbar from '../DataListToolbar'; import LookupErrorMessage from './shared/LookupErrorMessage'; import PaginatedTable, { HeaderCell, HeaderRow } from '../PaginatedTable'; import HostListItem from './HostListItem'; -import { HostsAPI } from '../../api'; -import { getQSConfig, mergeParams, parseQueryString } from '../../util/qs'; -import useRequest, { useDismissableError } from '../../util/useRequest'; import { removeDefaultParams, removeNamespacedKeys, diff --git a/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx b/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx index c3bfa74b4e..96f9e857b0 100644 --- a/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx +++ b/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx @@ -4,12 +4,12 @@ import { withRouter } from 'react-router-dom'; import { t, Trans } from '@lingui/macro'; import { FormGroup } from '@patternfly/react-core'; -import { InstanceGroupsAPI } from '../../api'; -import { InstanceGroup } from '../../types'; -import { getQSConfig, parseQueryString } from '../../util/qs'; +import { InstanceGroupsAPI } from 'api'; +import { InstanceGroup } from 'types'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useRequest from 'util/useRequest'; import Popover from '../Popover'; import OptionsList from '../OptionsList'; -import useRequest from '../../util/useRequest'; import Lookup from './Lookup'; import LookupErrorMessage from './shared/LookupErrorMessage'; diff --git a/awx/ui_next/src/components/Lookup/InventoryLookup.jsx b/awx/ui_next/src/components/Lookup/InventoryLookup.jsx index be18418972..d5947af4d0 100644 --- a/awx/ui_next/src/components/Lookup/InventoryLookup.jsx +++ b/awx/ui_next/src/components/Lookup/InventoryLookup.jsx @@ -2,12 +2,12 @@ import React, { useCallback, useEffect } from 'react'; import { func, bool, string } from 'prop-types'; import { withRouter } from 'react-router-dom'; import { t } from '@lingui/macro'; -import { InventoriesAPI } from '../../api'; -import { Inventory } from '../../types'; +import { InventoriesAPI } from 'api'; +import { Inventory } from 'types'; +import useRequest from 'util/useRequest'; +import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; import Lookup from './Lookup'; import OptionsList from '../OptionsList'; -import useRequest from '../../util/useRequest'; -import { getQSConfig, parseQueryString, mergeParams } from '../../util/qs'; import LookupErrorMessage from './shared/LookupErrorMessage'; import FieldWithPrompt from '../FieldWithPrompt'; diff --git a/awx/ui_next/src/components/Lookup/InventoryLookup.test.jsx b/awx/ui_next/src/components/Lookup/InventoryLookup.test.jsx index 765ad87bf7..7c20846d32 100644 --- a/awx/ui_next/src/components/Lookup/InventoryLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/InventoryLookup.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { InventoriesAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import InventoryLookup from './InventoryLookup'; -import { InventoriesAPI } from '../../api'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/Lookup/Lookup.jsx b/awx/ui_next/src/components/Lookup/Lookup.jsx index 1114006c3e..d8865373b9 100644 --- a/awx/ui_next/src/components/Lookup/Lookup.jsx +++ b/awx/ui_next/src/components/Lookup/Lookup.jsx @@ -22,10 +22,10 @@ import { } from '@patternfly/react-core'; import { t } from '@lingui/macro'; import styled from 'styled-components'; -import useDebounce from '../../util/useDebounce'; +import useDebounce from 'util/useDebounce'; +import { QSConfig } from 'types'; import ChipGroup from '../ChipGroup'; import reducer, { initReducer } from './shared/reducer'; -import { QSConfig } from '../../types'; const ChipHolder = styled.div` --pf-c-form-control--Height: auto; diff --git a/awx/ui_next/src/components/Lookup/Lookup.test.jsx b/awx/ui_next/src/components/Lookup/Lookup.test.jsx index 801589f73b..6d44dfae73 100644 --- a/awx/ui_next/src/components/Lookup/Lookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/Lookup.test.jsx @@ -2,11 +2,11 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { getQSConfig } from 'util/qs'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { getQSConfig } from '../../util/qs'; import Lookup from './Lookup'; /** diff --git a/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.jsx b/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.jsx index e54a53ca21..dbad506f98 100644 --- a/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.jsx +++ b/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.jsx @@ -4,14 +4,14 @@ import { withRouter } from 'react-router-dom'; import PropTypes from 'prop-types'; import { t } from '@lingui/macro'; import { ToolbarItem, Alert } from '@patternfly/react-core'; -import { CredentialsAPI, CredentialTypesAPI } from '../../api'; +import { CredentialsAPI, CredentialTypesAPI } from 'api'; +import useRequest from 'util/useRequest'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useIsMounted from 'util/useIsMounted'; import AnsibleSelect from '../AnsibleSelect'; import CredentialChip from '../CredentialChip'; import OptionsList from '../OptionsList'; -import useRequest from '../../util/useRequest'; -import { getQSConfig, parseQueryString } from '../../util/qs'; import Lookup from './Lookup'; -import useIsMounted from '../../util/useIsMounted'; const QS_CONFIG = getQSConfig('credentials', { page: 1, diff --git a/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.jsx b/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.jsx index 0cfb3a66b5..45f0485614 100644 --- a/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.jsx @@ -1,12 +1,12 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { CredentialsAPI, CredentialTypesAPI } from 'api'; import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; import MultiCredentialsLookup from './MultiCredentialsLookup'; -import { CredentialsAPI, CredentialTypesAPI } from '../../api'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/Lookup/OrganizationLookup.jsx b/awx/ui_next/src/components/Lookup/OrganizationLookup.jsx index 1741a900ca..347907d629 100644 --- a/awx/ui_next/src/components/Lookup/OrganizationLookup.jsx +++ b/awx/ui_next/src/components/Lookup/OrganizationLookup.jsx @@ -3,11 +3,11 @@ import { node, func, bool, string } from 'prop-types'; import { withRouter } from 'react-router-dom'; import { t } from '@lingui/macro'; import { FormGroup } from '@patternfly/react-core'; -import { OrganizationsAPI } from '../../api'; -import { Organization } from '../../types'; -import { getQSConfig, parseQueryString } from '../../util/qs'; -import useRequest from '../../util/useRequest'; -import useAutoPopulateLookup from '../../util/useAutoPopulateLookup'; +import { OrganizationsAPI } from 'api'; +import { Organization } from 'types'; +import { getQSConfig, parseQueryString } from 'util/qs'; +import useRequest from 'util/useRequest'; +import useAutoPopulateLookup from 'util/useAutoPopulateLookup'; import OptionsList from '../OptionsList'; import Lookup from './Lookup'; import LookupErrorMessage from './shared/LookupErrorMessage'; diff --git a/awx/ui_next/src/components/Lookup/OrganizationLookup.test.jsx b/awx/ui_next/src/components/Lookup/OrganizationLookup.test.jsx index 873310120e..76309446fe 100644 --- a/awx/ui_next/src/components/Lookup/OrganizationLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/OrganizationLookup.test.jsx @@ -1,9 +1,9 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { OrganizationsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; import OrganizationLookup, { _OrganizationLookup } from './OrganizationLookup'; -import { OrganizationsAPI } from '../../api'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/Lookup/ProjectLookup.jsx b/awx/ui_next/src/components/Lookup/ProjectLookup.jsx index 2774a86eaf..7e96fcc768 100644 --- a/awx/ui_next/src/components/Lookup/ProjectLookup.jsx +++ b/awx/ui_next/src/components/Lookup/ProjectLookup.jsx @@ -3,13 +3,13 @@ import { node, string, func, bool } from 'prop-types'; import { withRouter } from 'react-router-dom'; import { t } from '@lingui/macro'; import { FormGroup } from '@patternfly/react-core'; -import { ProjectsAPI } from '../../api'; -import { Project } from '../../types'; -import Popover from '../Popover'; +import { ProjectsAPI } from 'api'; +import { Project } from 'types'; +import useAutoPopulateLookup from 'util/useAutoPopulateLookup'; +import useRequest from 'util/useRequest'; +import { getQSConfig, parseQueryString } from 'util/qs'; import OptionsList from '../OptionsList'; -import useAutoPopulateLookup from '../../util/useAutoPopulateLookup'; -import useRequest from '../../util/useRequest'; -import { getQSConfig, parseQueryString } from '../../util/qs'; +import Popover from '../Popover'; import Lookup from './Lookup'; import LookupErrorMessage from './shared/LookupErrorMessage'; diff --git a/awx/ui_next/src/components/Lookup/ProjectLookup.test.jsx b/awx/ui_next/src/components/Lookup/ProjectLookup.test.jsx index 94430074f6..a714ef4c5c 100644 --- a/awx/ui_next/src/components/Lookup/ProjectLookup.test.jsx +++ b/awx/ui_next/src/components/Lookup/ProjectLookup.test.jsx @@ -1,8 +1,8 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { Formik } from 'formik'; +import { ProjectsAPI } from 'api'; import { mountWithContexts } from '../../../testUtils/enzymeHelpers'; -import { ProjectsAPI } from '../../api'; import ProjectLookup from './ProjectLookup'; jest.mock('../../api'); diff --git a/awx/ui_next/src/components/MultiSelect/TagMultiSelect.jsx b/awx/ui_next/src/components/MultiSelect/TagMultiSelect.jsx index 6452992123..c1e3d54ad5 100644 --- a/awx/ui_next/src/components/MultiSelect/TagMultiSelect.jsx +++ b/awx/ui_next/src/components/MultiSelect/TagMultiSelect.jsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { func, string } from 'prop-types'; import { t } from '@lingui/macro'; import { Select, SelectOption, SelectVariant } from '@patternfly/react-core'; -import { arrayToString, stringToArray } from '../../util/strings'; +import { arrayToString, stringToArray } from 'util/strings'; function TagMultiSelect({ onChange, value }) { const selections = stringToArray(value); diff --git a/awx/ui_next/src/components/MultiSelect/useSyncedSelectValue.js b/awx/ui_next/src/components/MultiSelect/useSyncedSelectValue.js index 1b4c46195d..6244e55c2a 100644 --- a/awx/ui_next/src/components/MultiSelect/useSyncedSelectValue.js +++ b/awx/ui_next/src/components/MultiSelect/useSyncedSelectValue.js @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import useIsMounted from '../../util/useIsMounted'; +import useIsMounted from 'util/useIsMounted'; /* Hook for using PatternFly's component when a pre-existing value diff --git a/awx/ui_next/src/components/NotificationList/NotificationList.js b/awx/ui_next/src/components/NotificationList/NotificationList.js index ca05d4fbe2..81aad8a797 100644 --- a/awx/ui_next/src/components/NotificationList/NotificationList.js +++ b/awx/ui_next/src/components/NotificationList/NotificationList.js @@ -4,7 +4,7 @@ import { number, shape, bool } from 'prop-types'; import { t } from '@lingui/macro'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { NotificationTemplatesAPI } from 'api'; import AlertModal from '../AlertModal'; import ErrorDetail from '../ErrorDetail'; diff --git a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.js b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.js index 4725d757d3..e99f160b21 100644 --- a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.js +++ b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.js @@ -3,7 +3,7 @@ import { useLocation } from 'react-router-dom'; import { t } from '@lingui/macro'; import { RolesAPI, TeamsAPI, UsersAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import AddResourceRole from '../AddRole/AddResourceRole'; import AlertModal from '../AlertModal'; import DataListToolbar from '../DataListToolbar'; diff --git a/awx/ui_next/src/components/Schedule/Schedule.js b/awx/ui_next/src/components/Schedule/Schedule.js index 926d16e8ce..d362544ba4 100644 --- a/awx/ui_next/src/components/Schedule/Schedule.js +++ b/awx/ui_next/src/components/Schedule/Schedule.js @@ -11,7 +11,7 @@ import { } from 'react-router-dom'; import { CaretLeftIcon } from '@patternfly/react-icons'; import { SchedulesAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import RoutedTabs from '../RoutedTabs'; import ContentError from '../ContentError'; import ContentLoading from '../ContentLoading'; diff --git a/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.js b/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.js index 8ca59a79ec..3f426faae0 100644 --- a/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.js +++ b/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.js @@ -8,7 +8,7 @@ import { t } from '@lingui/macro'; import { Chip, Divider, Title, Button } from '@patternfly/react-core'; import { Schedule } from 'types'; import { formatDateString } from 'util/dates'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { JobTemplatesAPI, SchedulesAPI, WorkflowJobTemplatesAPI } from 'api'; import { parseVariableField, jsonToYaml } from 'util/yaml'; import AlertModal from '../../AlertModal'; diff --git a/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.js b/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.js index 5e3a42bf25..d60a10d423 100644 --- a/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.js +++ b/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.js @@ -4,8 +4,8 @@ import { bool, func } from 'prop-types'; import { t } from '@lingui/macro'; import { SchedulesAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { getQSConfig, parseQueryString } from 'util/qs'; import AlertModal from '../../AlertModal'; import ErrorDetail from '../../ErrorDetail'; diff --git a/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.js b/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.js index 19a1afdb2e..19008c0417 100644 --- a/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.js +++ b/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.js @@ -3,7 +3,7 @@ import React, { Fragment, useState, useEffect, useCallback } from 'react'; import { t } from '@lingui/macro'; import { Switch, Tooltip } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { SchedulesAPI } from 'api'; import AlertModal from '../../AlertModal'; import ErrorDetail from '../../ErrorDetail'; diff --git a/awx/ui_next/src/components/Schedule/shared/ScheduleForm.js b/awx/ui_next/src/components/Schedule/shared/ScheduleForm.js index b810483586..39e18e4d82 100644 --- a/awx/ui_next/src/components/Schedule/shared/ScheduleForm.js +++ b/awx/ui_next/src/components/Schedule/shared/ScheduleForm.js @@ -14,7 +14,7 @@ import { import { Config } from 'contexts/Config'; import { SchedulesAPI } from 'api'; import { dateToInputDateTime } from 'util/dates'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { required } from 'util/validators'; import { parseVariableField } from 'util/yaml'; import AnsibleSelect from '../../AnsibleSelect'; diff --git a/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.js b/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.js index 0ff6674d6e..1931e88d4c 100644 --- a/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.js +++ b/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.js @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { ExpandableSection, Wizard } from '@patternfly/react-core'; import { t } from '@lingui/macro'; import { useFormikContext } from 'formik'; -import { useDismissableError } from 'util/useRequest'; +import { useDismissableError } from 'hooks/useRequest'; import AlertModal from '../../AlertModal'; import ContentError from '../../ContentError'; import ContentLoading from '../../ContentLoading'; diff --git a/awx/ui_next/src/components/TemplateList/TemplateList.js b/awx/ui_next/src/components/TemplateList/TemplateList.js index 71d1ff5969..dea3ae1182 100644 --- a/awx/ui_next/src/components/TemplateList/TemplateList.js +++ b/awx/ui_next/src/components/TemplateList/TemplateList.js @@ -7,11 +7,11 @@ import { UnifiedJobTemplatesAPI, WorkflowJobTemplatesAPI, } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; -import useExpanded from 'util/useExpanded'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; +import useExpanded from 'hooks/useExpanded'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useWsTemplates from 'util/useWsTemplates'; +import useWsTemplates from 'hooks/useWsTemplates'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; import AlertModal from '../AlertModal'; import DatalistToolbar from '../DataListToolbar'; diff --git a/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js b/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js index 9cee313ac9..1c3068bfa0 100644 --- a/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js +++ b/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js @@ -2,8 +2,8 @@ import React, { useState, useCallback } from 'react'; import { t } from '@lingui/macro'; import { useParams } from 'react-router-dom'; import styled from 'styled-components'; -import useRequest from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import SelectableCard from '../SelectableCard'; import Wizard from '../Wizard/Wizard'; import SelectResourceStep from '../AddRole/SelectResourceStep'; diff --git a/awx/ui_next/src/contexts/Config.js b/awx/ui_next/src/contexts/Config.js index cf03faa175..5b153edd09 100644 --- a/awx/ui_next/src/contexts/Config.js +++ b/awx/ui_next/src/contexts/Config.js @@ -4,7 +4,7 @@ import { useRouteMatch } from 'react-router-dom'; import { t } from '@lingui/macro'; import { ConfigAPI, MeAPI, UsersAPI, OrganizationsAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; import { useSession } from './Session'; diff --git a/awx/ui_next/src/util/useAutoPopulateLookup.js b/awx/ui_next/src/hooks/useAutoPopulateLookup.js similarity index 100% rename from awx/ui_next/src/util/useAutoPopulateLookup.js rename to awx/ui_next/src/hooks/useAutoPopulateLookup.js diff --git a/awx/ui_next/src/util/useBrandName.js b/awx/ui_next/src/hooks/useBrandName.js similarity index 100% rename from awx/ui_next/src/util/useBrandName.js rename to awx/ui_next/src/hooks/useBrandName.js diff --git a/awx/ui_next/src/util/useDebounce.js b/awx/ui_next/src/hooks/useDebounce.js similarity index 100% rename from awx/ui_next/src/util/useDebounce.js rename to awx/ui_next/src/hooks/useDebounce.js diff --git a/awx/ui_next/src/util/useDebounce.test.js b/awx/ui_next/src/hooks/useDebounce.test.js similarity index 100% rename from awx/ui_next/src/util/useDebounce.test.js rename to awx/ui_next/src/hooks/useDebounce.test.js diff --git a/awx/ui_next/src/util/useExpanded.js b/awx/ui_next/src/hooks/useExpanded.js similarity index 100% rename from awx/ui_next/src/util/useExpanded.js rename to awx/ui_next/src/hooks/useExpanded.js diff --git a/awx/ui_next/src/util/useExpanded.test.js b/awx/ui_next/src/hooks/useExpanded.test.js similarity index 100% rename from awx/ui_next/src/util/useExpanded.test.js rename to awx/ui_next/src/hooks/useExpanded.test.js diff --git a/awx/ui_next/src/util/useInterval.js b/awx/ui_next/src/hooks/useInterval.js similarity index 100% rename from awx/ui_next/src/util/useInterval.js rename to awx/ui_next/src/hooks/useInterval.js diff --git a/awx/ui_next/src/util/useIsMounted.js b/awx/ui_next/src/hooks/useIsMounted.js similarity index 100% rename from awx/ui_next/src/util/useIsMounted.js rename to awx/ui_next/src/hooks/useIsMounted.js diff --git a/awx/ui_next/src/util/useModal.js b/awx/ui_next/src/hooks/useModal.js similarity index 100% rename from awx/ui_next/src/util/useModal.js rename to awx/ui_next/src/hooks/useModal.js diff --git a/awx/ui_next/src/util/useModal.test.js b/awx/ui_next/src/hooks/useModal.test.js similarity index 100% rename from awx/ui_next/src/util/useModal.test.js rename to awx/ui_next/src/hooks/useModal.test.js diff --git a/awx/ui_next/src/util/useRequest.js b/awx/ui_next/src/hooks/useRequest.js similarity index 98% rename from awx/ui_next/src/util/useRequest.js rename to awx/ui_next/src/hooks/useRequest.js index 22809f5b78..fca9da0a7a 100644 --- a/awx/ui_next/src/util/useRequest.js +++ b/awx/ui_next/src/hooks/useRequest.js @@ -1,6 +1,6 @@ import { useEffect, useState, useCallback } from 'react'; import { useLocation, useHistory } from 'react-router-dom'; -import { parseQueryString, updateQueryString } from './qs'; +import { parseQueryString, updateQueryString } from 'util/qs'; import useIsMounted from './useIsMounted'; /* diff --git a/awx/ui_next/src/util/useRequest.test.js b/awx/ui_next/src/hooks/useRequest.test.js similarity index 100% rename from awx/ui_next/src/util/useRequest.test.js rename to awx/ui_next/src/hooks/useRequest.test.js diff --git a/awx/ui_next/src/util/useSelected.js b/awx/ui_next/src/hooks/useSelected.js similarity index 100% rename from awx/ui_next/src/util/useSelected.js rename to awx/ui_next/src/hooks/useSelected.js diff --git a/awx/ui_next/src/util/useSelected.test.js b/awx/ui_next/src/hooks/useSelected.test.js similarity index 100% rename from awx/ui_next/src/util/useSelected.test.js rename to awx/ui_next/src/hooks/useSelected.test.js diff --git a/awx/ui_next/src/util/useThrottle.js b/awx/ui_next/src/hooks/useThrottle.js similarity index 100% rename from awx/ui_next/src/util/useThrottle.js rename to awx/ui_next/src/hooks/useThrottle.js diff --git a/awx/ui_next/src/util/useWebsocket.js b/awx/ui_next/src/hooks/useWebsocket.js similarity index 100% rename from awx/ui_next/src/util/useWebsocket.js rename to awx/ui_next/src/hooks/useWebsocket.js diff --git a/awx/ui_next/src/util/useWsTemplates.js b/awx/ui_next/src/hooks/useWsTemplates.js similarity index 100% rename from awx/ui_next/src/util/useWsTemplates.js rename to awx/ui_next/src/hooks/useWsTemplates.js diff --git a/awx/ui_next/src/util/useWsTemplates.test.js b/awx/ui_next/src/hooks/useWsTemplates.test.js similarity index 100% rename from awx/ui_next/src/util/useWsTemplates.test.js rename to awx/ui_next/src/hooks/useWsTemplates.test.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStream.js b/awx/ui_next/src/screens/ActivityStream/ActivityStream.js index 2b61d34ad4..6253b05c47 100644 --- a/awx/ui_next/src/screens/ActivityStream/ActivityStream.js +++ b/awx/ui_next/src/screens/ActivityStream/ActivityStream.js @@ -18,7 +18,7 @@ import PaginatedTable, { HeaderRow, HeaderCell, } from 'components/PaginatedTable'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { getQSConfig, parseQueryString, updateQueryString } from 'util/qs'; import { ActivityStreamAPI } from 'api'; diff --git a/awx/ui_next/src/screens/Application/Application/Application.js b/awx/ui_next/src/screens/Application/Application/Application.js index 7012b2f528..e83898dfb3 100644 --- a/awx/ui_next/src/screens/Application/Application/Application.js +++ b/awx/ui_next/src/screens/Application/Application/Application.js @@ -12,7 +12,7 @@ import { t } from '@lingui/macro'; import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { ApplicationsAPI } from 'api'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; diff --git a/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.js b/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.js index 780450a07d..2b224261b1 100644 --- a/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.js +++ b/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.js @@ -2,7 +2,7 @@ import React, { useCallback, useEffect, useState } from 'react'; import { useHistory } from 'react-router-dom'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import { ApplicationsAPI } from 'api'; import { CardBody } from 'components/Card'; diff --git a/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.js b/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.js index b6d52ca3a6..1ae544d1dc 100644 --- a/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.js +++ b/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.js @@ -4,7 +4,7 @@ import { t } from '@lingui/macro'; import { Link, useHistory } from 'react-router-dom'; import { Button } from '@patternfly/react-core'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import { CardBody, CardActionsRow } from 'components/Card'; import { Detail, DetailList, UserDateDetail } from 'components/DetailList'; diff --git a/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.js b/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.js index 0dc57833ac..ce016a79a9 100644 --- a/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.js +++ b/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.js @@ -11,8 +11,8 @@ import { getQSConfig, parseQueryString } from 'util/qs'; import { TokensAPI, ApplicationsAPI } from 'api'; import ErrorDetail from 'components/ErrorDetail'; import AlertModal from 'components/AlertModal'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import DatalistToolbar from 'components/DataListToolbar'; import ApplicationTokenListItem from './ApplicationTokenListItem'; diff --git a/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.js b/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.js index 47d735ec04..d22bfb212d 100644 --- a/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.js +++ b/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.js @@ -5,7 +5,7 @@ import { useLocation, useRouteMatch } from 'react-router-dom'; import { Card, PageSection } from '@patternfly/react-core'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import ErrorDetail from 'components/ErrorDetail'; import AlertModal from 'components/AlertModal'; @@ -17,7 +17,7 @@ import PaginatedTable, { ToolbarDeleteButton, ToolbarAddButton, } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import ApplicationListItem from './ApplicationListItem'; diff --git a/awx/ui_next/src/screens/Credential/Credential.js b/awx/ui_next/src/screens/Credential/Credential.js index d6c89a4e5e..2304737dca 100644 --- a/awx/ui_next/src/screens/Credential/Credential.js +++ b/awx/ui_next/src/screens/Credential/Credential.js @@ -12,7 +12,7 @@ import { Redirect, Link, } from 'react-router-dom'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { ResourceAccessList } from 'components/ResourceAccessList'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; diff --git a/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.js b/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.js index 927b3460d6..ce7c2a73c2 100644 --- a/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.js +++ b/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.js @@ -9,7 +9,7 @@ import { CredentialTypesAPI, CredentialsAPI, } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import CredentialForm from '../shared/CredentialForm'; function CredentialAdd({ me }) { diff --git a/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.js b/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.js index 55e0f7fc9c..f42991f498 100644 --- a/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.js +++ b/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.js @@ -21,7 +21,7 @@ import CredentialChip from 'components/CredentialChip'; import ErrorDetail from 'components/ErrorDetail'; import { CredentialsAPI, CredentialTypesAPI } from 'api'; import { Credential } from 'types'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; const PluginInputMetadata = styled.div` diff --git a/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.js b/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.js index 6347aa56ab..81fd922432 100644 --- a/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.js +++ b/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.js @@ -10,7 +10,7 @@ import { } from 'api'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { useConfig } from 'contexts/Config'; import { Credential } from 'types'; import CredentialForm from '../shared/CredentialForm'; diff --git a/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.js b/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.js index 8965d1fc19..ae8525453f 100644 --- a/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.js +++ b/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.js @@ -3,7 +3,7 @@ import { useLocation } from 'react-router-dom'; import { t, Plural } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; import { CredentialsAPI } from 'api'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; import DataListToolbar from 'components/DataListToolbar'; @@ -13,7 +13,7 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import { getQSConfig, parseQueryString } from 'util/qs'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; import CredentialListItem from './CredentialListItem'; diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js index 72a61c304d..8f6506498b 100644 --- a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js +++ b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js @@ -10,7 +10,7 @@ import { WizardFooter, } from '@patternfly/react-core'; import { CredentialsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import CredentialsStep from './CredentialsStep'; import MetadataStep from './MetadataStep'; import { CredentialPluginTestAlert } from '..'; diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js index a6c8ab5bef..2ed81b9564 100644 --- a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js +++ b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js @@ -8,7 +8,7 @@ import CheckboxListItem from 'components/CheckboxListItem'; import ContentError from 'components/ContentError'; import DataListToolbar from 'components/DataListToolbar'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import PaginatedTable, { HeaderCell, HeaderRow, diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.js b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.js index 46908ccab2..17ea760707 100644 --- a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.js +++ b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import FormField from 'components/FormField'; import { FormFullWidthLayout } from 'components/FormLayout'; import Popover from 'components/Popover'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { required } from 'util/validators'; function MetadataStep() { diff --git a/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.js b/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.js index 794ab46457..8d6afe1aca 100644 --- a/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.js +++ b/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.js @@ -10,7 +10,7 @@ import FormField from 'components/FormField'; import { FormFullWidthLayout } from 'components/FormLayout'; import Popover from 'components/Popover'; import { required } from 'util/validators'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { CredentialPluginTestAlert } from './CredentialPlugins'; function ExternalTestModal({ diff --git a/awx/ui_next/src/screens/CredentialType/CredentialType.js b/awx/ui_next/src/screens/CredentialType/CredentialType.js index ac19fb5512..07942674f9 100644 --- a/awx/ui_next/src/screens/CredentialType/CredentialType.js +++ b/awx/ui_next/src/screens/CredentialType/CredentialType.js @@ -12,7 +12,7 @@ import { t } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; import { CaretLeftIcon } from '@patternfly/react-icons'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { CredentialTypesAPI } from 'api'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js b/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js index 89ea6c51ba..cd39d3b76f 100644 --- a/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js +++ b/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js @@ -9,7 +9,7 @@ import AlertModal from 'components/AlertModal'; import { CardBody, CardActionsRow } from 'components/Card'; import DeleteButton from 'components/DeleteButton'; import { Detail, DetailList, UserDateDetail } from 'components/DetailList'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { CredentialTypesAPI } from 'api'; import { jsonToYaml } from 'util/yaml'; import { diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.js b/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.js index 3fc164325c..87e86530de 100644 --- a/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.js +++ b/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.js @@ -6,8 +6,8 @@ import { Card, PageSection } from '@patternfly/react-core'; import { CredentialTypesAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import PaginatedTable, { HeaderRow, HeaderCell, diff --git a/awx/ui_next/src/screens/Dashboard/Dashboard.js b/awx/ui_next/src/screens/Dashboard/Dashboard.js index 73d027ea38..db995835bd 100644 --- a/awx/ui_next/src/screens/Dashboard/Dashboard.js +++ b/awx/ui_next/src/screens/Dashboard/Dashboard.js @@ -10,7 +10,7 @@ import { TabTitleText, } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DashboardAPI } from 'api'; import ScreenHeader from 'components/ScreenHeader'; import JobList from 'components/JobList'; diff --git a/awx/ui_next/src/screens/Dashboard/DashboardGraph.js b/awx/ui_next/src/screens/Dashboard/DashboardGraph.js index 287f94f70c..132b37e6ec 100644 --- a/awx/ui_next/src/screens/Dashboard/DashboardGraph.js +++ b/awx/ui_next/src/screens/Dashboard/DashboardGraph.js @@ -13,7 +13,7 @@ import { SelectOption, } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DashboardAPI } from 'api'; import ContentLoading from 'components/ContentLoading'; import LineChart from './shared/LineChart'; diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.js b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.js index df6522e239..846bd31433 100644 --- a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.js +++ b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.js @@ -12,7 +12,7 @@ import { t } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; import { CaretLeftIcon } from '@patternfly/react-icons'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { ExecutionEnvironmentsAPI } from 'api'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js index d121748c0f..a290c18349 100644 --- a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js +++ b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js @@ -8,7 +8,7 @@ import AlertModal from 'components/AlertModal'; import { CardBody, CardActionsRow } from 'components/Card'; import DeleteButton from 'components/DeleteButton'; import { Detail, DetailList, UserDateDetail } from 'components/DetailList'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { toTitleCase } from 'util/strings'; import { ExecutionEnvironmentsAPI } from 'api'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js index ccadb2bfaa..00a5bc0986 100644 --- a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js +++ b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js @@ -5,8 +5,8 @@ import { Card, PageSection } from '@patternfly/react-core'; import { ExecutionEnvironmentsAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import PaginatedTable, { HeaderRow, HeaderCell, diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js index 97cefec9d5..30e6d5e96a 100644 --- a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js +++ b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js @@ -6,7 +6,7 @@ import { Card } from '@patternfly/react-core'; import { ExecutionEnvironmentsAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import DatalistToolbar from 'components/DataListToolbar'; import PaginatedTable, { HeaderCell, diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js b/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js index a4ef58b52b..575d39dd15 100644 --- a/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js +++ b/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js @@ -13,7 +13,7 @@ import { OrganizationLookup } from 'components/Lookup'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import { required } from 'util/validators'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; function ExecutionEnvironmentFormFields({ me, diff --git a/awx/ui_next/src/screens/Host/Host.js b/awx/ui_next/src/screens/Host/Host.js index d4deeae9ba..e02f73b47f 100644 --- a/awx/ui_next/src/screens/Host/Host.js +++ b/awx/ui_next/src/screens/Host/Host.js @@ -16,7 +16,7 @@ import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import JobList from 'components/JobList'; import { HostsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import HostFacts from './HostFacts'; import HostDetail from './HostDetail'; import HostEdit from './HostEdit'; diff --git a/awx/ui_next/src/screens/Host/HostFacts/HostFacts.js b/awx/ui_next/src/screens/Host/HostFacts/HostFacts.js index 1a77abb86b..6b1914e9ec 100644 --- a/awx/ui_next/src/screens/Host/HostFacts/HostFacts.js +++ b/awx/ui_next/src/screens/Host/HostFacts/HostFacts.js @@ -7,7 +7,7 @@ import { DetailList } from 'components/DetailList'; import { VariablesDetail } from 'components/CodeEditor'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { HostsAPI } from 'api'; function HostFacts({ host }) { diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.js b/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.js index 61b4c8ed54..8c4ac3dd70 100644 --- a/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.js +++ b/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.js @@ -6,8 +6,8 @@ import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; import useRequest, { useDismissableError, useDeleteItems, -} from 'util/useRequest'; -import useSelected from 'util/useSelected'; +} from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { HostsAPI, InventoriesAPI } from 'api'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; diff --git a/awx/ui_next/src/screens/Host/HostList/HostList.js b/awx/ui_next/src/screens/Host/HostList/HostList.js index 3bad971355..6477cbcfc4 100644 --- a/awx/ui_next/src/screens/Host/HostList/HostList.js +++ b/awx/ui_next/src/screens/Host/HostList/HostList.js @@ -12,8 +12,8 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { encodeQueryString, getQSConfig, parseQueryString } from 'util/qs'; import HostListItem from './HostListItem'; diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.js b/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.js index c468524004..598c4796e6 100644 --- a/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.js +++ b/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.js @@ -12,7 +12,7 @@ import { t } from '@lingui/macro'; import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InstanceGroupsAPI, SettingsAPI } from 'api'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.js b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.js index 7c3d1199b8..c2c7fa6b9f 100644 --- a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.js +++ b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.js @@ -4,7 +4,7 @@ import { useHistory } from 'react-router-dom'; import { CardBody } from 'components/Card'; import { InstanceGroupsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import { jsonToYaml, isJsonString } from 'util/yaml'; diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js index 1ed7038053..491ab35d9d 100644 --- a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js +++ b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js @@ -10,7 +10,7 @@ import ErrorDetail from 'components/ErrorDetail'; import { CardBody, CardActionsRow } from 'components/Card'; import DeleteButton from 'components/DeleteButton'; import { Detail, DetailList, UserDateDetail } from 'components/DetailList'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { jsonToYaml, isJsonString } from 'util/yaml'; import { InstanceGroupsAPI } from 'api'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.js b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.js index 8f93fa2695..fea58adbe4 100644 --- a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.js +++ b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.js @@ -4,7 +4,7 @@ import { Card, PageSection } from '@patternfly/react-core'; import { CardBody } from 'components/Card'; import { InstanceGroupsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import ContainerGroupForm from '../shared/ContainerGroupForm'; diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.js b/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.js index ef2f88c905..10e713fb79 100644 --- a/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.js +++ b/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.js @@ -12,7 +12,7 @@ import { t } from '@lingui/macro'; import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InstanceGroupsAPI, SettingsAPI } from 'api'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js index 073051e438..9567193b60 100644 --- a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js +++ b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js @@ -15,7 +15,7 @@ import { UserDateDetail, DetailBadge, } from 'components/DetailList'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { InstanceGroupsAPI } from 'api'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js index f5534adf5e..a4e1f80703 100644 --- a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js +++ b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js @@ -6,8 +6,8 @@ import { Card, PageSection, DropdownItem } from '@patternfly/react-core'; import { InstanceGroupsAPI, SettingsAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import PaginatedTable, { HeaderRow, HeaderCell, diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.js b/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.js index d24eaaccc3..1e871650cd 100644 --- a/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.js +++ b/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.js @@ -3,7 +3,7 @@ import React, { useCallback, useEffect, useState } from 'react'; import { t } from '@lingui/macro'; import { Route, Switch } from 'react-router-dom'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import ScreenHeader from 'components/ScreenHeader'; diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.js b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.js index f01fd9185e..a860e957fb 100644 --- a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.js +++ b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.js @@ -18,8 +18,8 @@ import ErrorDetail from 'components/ErrorDetail'; import useRequest, { useDeleteItems, useDismissableError, -} from 'util/useRequest'; -import useSelected from 'util/useSelected'; +} from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { InstanceGroupsAPI, InstancesAPI } from 'api'; import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.js b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.js index 3a5c640c72..8c787a0407 100644 --- a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.js +++ b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.js @@ -14,8 +14,8 @@ import { Tr, Td } from '@patternfly/react-table'; import { ActionsTd, ActionItem } from 'components/PaginatedTable'; import InstanceToggle from 'components/InstanceToggle'; import { Instance } from 'types'; -import useRequest, { useDismissableError } from 'util/useRequest'; -import useDebounce from 'util/useDebounce'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; +import useDebounce from 'hooks/useDebounce'; import { InstancesAPI } from 'api'; import { useConfig } from 'contexts/Config'; import AlertModal from 'components/AlertModal'; diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.js b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.js index 251f2cea49..071b177a8c 100644 --- a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.js +++ b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.js @@ -2,13 +2,13 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { InstancesAPI } from 'api'; -import useDebounce from 'util/useDebounce'; +import useDebounce from 'hooks/useDebounce'; import { mountWithContexts } from '../../../../testUtils/enzymeHelpers'; import InstanceListItem from './InstanceListItem'; jest.mock('../../../api'); -jest.mock('../../../util/useDebounce'); +jest.mock('../../../hooks/useDebounce'); const instance = [ { diff --git a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.js b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.js index 3a66426f56..28cff4cc8b 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.js +++ b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.js @@ -13,7 +13,7 @@ import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import ChipGroup from 'components/ChipGroup'; import { InventoriesAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { Inventory } from 'types'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; diff --git a/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.js b/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.js index 18f8d74281..9914159ab4 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.js +++ b/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.js @@ -5,7 +5,7 @@ import { object } from 'prop-types'; import { CardBody } from 'components/Card'; import { InventoriesAPI } from 'api'; import ContentLoading from 'components/ContentLoading'; -import useIsMounted from 'util/useIsMounted'; +import useIsMounted from 'hooks/useIsMounted'; import InventoryForm from '../shared/InventoryForm'; function InventoryEdit({ inventory }) { diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js index 8d9d79cf50..79185a648c 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js +++ b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js @@ -9,8 +9,8 @@ import { GroupsAPI, InventoriesAPI } from 'api'; import useRequest, { useDeleteItems, useDismissableError, -} from 'util/useRequest'; -import useSelected from 'util/useSelected'; +} from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import AlertModal from 'components/AlertModal'; import DataListToolbar from 'components/DataListToolbar'; import ErrorDetail from 'components/ErrorDetail'; diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.js b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.js index 03b42c5f8a..e0093da827 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.js +++ b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.js @@ -3,8 +3,8 @@ import { useParams, useLocation } from 'react-router-dom'; import { t } from '@lingui/macro'; import { Tooltip } from '@patternfly/react-core'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useSelected from 'util/useSelected'; -import useRequest from 'util/useRequest'; +import useSelected from 'hooks/useSelected'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI } from 'api'; import DataListToolbar from 'components/DataListToolbar'; import PaginatedTable, { diff --git a/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.js b/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.js index 4f312d1941..9f39d7f6a6 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.js +++ b/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.js @@ -11,7 +11,7 @@ import { } from 'react-router-dom'; import { Card } from '@patternfly/react-core'; import { CaretLeftIcon } from '@patternfly/react-icons'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI } from 'api'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.js b/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.js index 2bf5ef3ff6..332b25f23d 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.js +++ b/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.js @@ -7,7 +7,7 @@ import { DetailList } from 'components/DetailList'; import { VariablesDetail } from 'components/CodeEditor'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { HostsAPI } from 'api'; function InventoryHostFacts({ host }) { diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js index c8b3b5ef6a..0659332f58 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js +++ b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js @@ -6,8 +6,8 @@ import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; import useRequest, { useDismissableError, useDeleteItems, -} from 'util/useRequest'; -import useSelected from 'util/useSelected'; +} from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { HostsAPI, InventoriesAPI } from 'api'; import DataListToolbar from 'components/DataListToolbar'; import AlertModal from 'components/AlertModal'; diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.js b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.js index d7eb76ef36..0113757f11 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.js +++ b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.js @@ -3,7 +3,7 @@ import { useParams, useLocation } from 'react-router-dom'; import { t } from '@lingui/macro'; import { getQSConfig, parseQueryString } from 'util/qs'; import { InventoriesAPI, HostsAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import DataListToolbar from 'components/DataListToolbar'; import ErrorDetail from 'components/ErrorDetail'; @@ -13,7 +13,7 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import AdHocCommands from 'components/AdHocCommands/AdHocCommands'; import InventoryHostItem from './InventoryHostItem'; diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.js b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.js index 7a7bcd2132..db661b0281 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.js +++ b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.js @@ -3,8 +3,8 @@ import { useLocation, useRouteMatch, Link } from 'react-router-dom'; import { t, Plural } from '@lingui/macro'; import { Card, PageSection, DropdownItem } from '@patternfly/react-core'; import { InventoriesAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import AlertModal from 'components/AlertModal'; import DatalistToolbar from 'components/DataListToolbar'; import ErrorDetail from 'components/ErrorDetail'; diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.js b/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.js index 03051d5f54..0b7080a1c3 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.js +++ b/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.js @@ -1,8 +1,8 @@ import { useState, useEffect } from 'react'; import { useLocation, useHistory } from 'react-router-dom'; import { parseQueryString, updateQueryString } from 'util/qs'; -import useWebsocket from 'util/useWebsocket'; -import useThrottle from 'util/useThrottle'; +import useWebsocket from 'hooks/useWebsocket'; +import useThrottle from 'hooks/useThrottle'; export default function useWsInventories( initialInventories, diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.js b/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.js index d7e04eaf71..72be794cca 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.js +++ b/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.js @@ -34,7 +34,7 @@ describe('useWsInventories hook', () => { Jest mock timers don’t play well with jest-websocket-mock, so we'll stub out throttling to resolve immediately */ - jest.mock('../../../util/useThrottle', () => ({ + jest.mock('../../../hooks/useThrottle', () => ({ __esModule: true, default: jest.fn(val => val), })); diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js index 78bae60626..617efbee37 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js +++ b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js @@ -5,9 +5,9 @@ import { useParams, useLocation, Link } from 'react-router-dom'; import { DropdownItem } from '@patternfly/react-core'; import { GroupsAPI, InventoriesAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { getQSConfig, parseQueryString, mergeParams } from 'util/qs'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import DataListToolbar from 'components/DataListToolbar'; import PaginatedTable, { diff --git a/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.js b/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.js index 609ff54b55..828deae889 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.js +++ b/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.js @@ -10,7 +10,7 @@ import { useLocation, } from 'react-router-dom'; import { CaretLeftIcon } from '@patternfly/react-icons'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI, InventorySourcesAPI, OrganizationsAPI } from 'api'; import { Schedules } from 'components/Schedule'; diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.js b/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.js index f676010da0..4b5c13b04a 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.js +++ b/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.js @@ -2,7 +2,7 @@ import React, { useCallback, useEffect } from 'react'; import { useHistory } from 'react-router-dom'; import { Card } from '@patternfly/react-core'; import { InventorySourcesAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { CardBody } from 'components/Card'; import InventorySourceForm from '../shared/InventorySourceForm'; diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js b/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js index 4e231deb89..45540bb5bc 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js +++ b/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js @@ -18,10 +18,10 @@ import DeleteButton from 'components/DeleteButton'; import ExecutionEnvironmentDetail from 'components/ExecutionEnvironmentDetail'; import { DetailList, Detail, UserDateDetail } from 'components/DetailList'; import ErrorDetail from 'components/ErrorDetail'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventorySourcesAPI } from 'api'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; -import useIsMounted from 'util/useIsMounted'; +import useIsMounted from 'hooks/useIsMounted'; import InventorySourceSyncButton from '../shared/InventorySourceSyncButton'; function InventorySourceDetail({ inventorySource }) { diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.js b/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.js index 3e204e3683..89328bf407 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.js +++ b/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.js @@ -2,7 +2,7 @@ import React, { useCallback, useEffect } from 'react'; import { useHistory } from 'react-router-dom'; import { Card } from '@patternfly/react-core'; import { CardBody } from 'components/Card'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventorySourcesAPI } from 'api'; import InventorySourceForm from '../shared/InventorySourceForm'; diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.js b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.js index 9f12ee9754..481e73c89e 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.js +++ b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.js @@ -6,7 +6,7 @@ import { Button, Tooltip } from '@patternfly/react-core'; import useRequest, { useDeleteItems, useDismissableError, -} from 'util/useRequest'; +} from 'hooks/useRequest'; import { getQSConfig, parseQueryString } from 'util/qs'; import { InventoriesAPI, InventorySourcesAPI } from 'api'; import PaginatedTable, { @@ -15,7 +15,7 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import DatalistToolbar from 'components/DataListToolbar'; import AlertModal from 'components/AlertModal/AlertModal'; import ErrorDetail from 'components/ErrorDetail/ErrorDetail'; diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.js b/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.js index cf1df0247b..f260fa678c 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.js +++ b/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.js @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import useWebsocket from 'util/useWebsocket'; +import useWebsocket from 'hooks/useWebsocket'; export default function useWsInventorySources(initialSources) { const [sources, setSources] = useState(initialSources); diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.js b/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.js index dcca078a5e..695e8af65a 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.js +++ b/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.js @@ -8,7 +8,7 @@ import useWsInventorySources from './useWsInventorySources'; Jest mock timers don’t play well with jest-websocket-mock, so we'll stub out throttling to resolve immediately */ -jest.mock('../../../util/useThrottle', () => ({ +jest.mock('../../../hooks/useThrottle', () => ({ __esModule: true, default: jest.fn(val => val), })); diff --git a/awx/ui_next/src/screens/Inventory/SmartInventory.js b/awx/ui_next/src/screens/Inventory/SmartInventory.js index 1c96d3a6b1..dc25fd67f5 100644 --- a/awx/ui_next/src/screens/Inventory/SmartInventory.js +++ b/awx/ui_next/src/screens/Inventory/SmartInventory.js @@ -11,7 +11,7 @@ import { import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI } from 'api'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.js b/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.js index 38e25033f2..de94bae435 100644 --- a/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.js +++ b/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.js @@ -2,7 +2,7 @@ import React, { useCallback, useEffect } from 'react'; import { useHistory } from 'react-router-dom'; import { Card, PageSection } from '@patternfly/react-core'; import { CardBody } from 'components/Card'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI } from 'api'; import SmartInventoryForm from '../shared/SmartInventoryForm'; diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js b/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js index c48e1042f5..b2c965c03c 100644 --- a/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js +++ b/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js @@ -6,7 +6,7 @@ import { Button, Chip, Label } from '@patternfly/react-core'; import { Inventory } from 'types'; import { InventoriesAPI, UnifiedJobsAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import { CardBody, CardActionsRow } from 'components/Card'; diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.js b/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.js index fe1b088a9d..6cf020ab0e 100644 --- a/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.js +++ b/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.js @@ -1,7 +1,7 @@ import React, { useCallback, useEffect } from 'react'; import { useHistory } from 'react-router-dom'; import { Inventory } from 'types'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI } from 'api'; import { CardBody } from 'components/Card'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.js b/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.js index 986f8fc381..f3b3861ddc 100644 --- a/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.js +++ b/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.js @@ -6,7 +6,7 @@ import { CaretLeftIcon } from '@patternfly/react-icons'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import RoutedTabs from 'components/RoutedTabs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { InventoriesAPI } from 'api'; import SmartInventoryHostDetail from '../SmartInventoryHostDetail'; diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js index ea157ef7cb..c4e955ba98 100644 --- a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js +++ b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js @@ -7,8 +7,8 @@ import PaginatedTable, { HeaderRow, HeaderCell, } from 'components/PaginatedTable'; -import useRequest from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { getQSConfig, parseQueryString } from 'util/qs'; import { InventoriesAPI } from 'api'; import { Inventory } from 'types'; diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.js b/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.js index f2ba439f7c..9ba42cd693 100644 --- a/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.js +++ b/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.js @@ -4,7 +4,7 @@ import { func, shape } from 'prop-types'; import { t } from '@lingui/macro'; import { Form, FormGroup, Title } from '@patternfly/react-core'; import { InventorySourcesAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { required } from 'util/validators'; import AnsibleSelect from 'components/AnsibleSelect'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js index e96cfadd74..9651cbd997 100644 --- a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js +++ b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js @@ -8,7 +8,7 @@ import { SelectOption, } from '@patternfly/react-core'; import { ProjectsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { required } from 'util/validators'; import CredentialLookup from 'components/Lookup/CredentialLookup'; import ProjectLookup from 'components/Lookup/ProjectLookup'; diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.js b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.js index 940a0f781a..41a6b7e28e 100644 --- a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.js +++ b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.js @@ -4,7 +4,7 @@ import { t } from '@lingui/macro'; import PropTypes from 'prop-types'; import { Button, Tooltip } from '@patternfly/react-core'; import { SyncIcon } from '@patternfly/react-icons'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal/AlertModal'; import ErrorDetail from 'components/ErrorDetail/ErrorDetail'; import { InventorySourcesAPI } from 'api'; diff --git a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.js b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.js index 0134282ee7..99404b3639 100644 --- a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.js +++ b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.js @@ -18,7 +18,7 @@ import { import HostFilterLookup from 'components/Lookup/HostFilterLookup'; import InstanceGroupsLookup from 'components/Lookup/InstanceGroupsLookup'; import OrganizationLookup from 'components/Lookup/OrganizationLookup'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { required } from 'util/validators'; import { InventoriesAPI } from 'api'; diff --git a/awx/ui_next/src/screens/Job/Job.js b/awx/ui_next/src/screens/Job/Job.js index af4e021832..42c81015cc 100644 --- a/awx/ui_next/src/screens/Job/Job.js +++ b/awx/ui_next/src/screens/Job/Job.js @@ -15,7 +15,7 @@ import { Card, PageSection } from '@patternfly/react-core'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import RoutedTabs from 'components/RoutedTabs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { getJobModel } from 'util/jobs'; import JobDetail from './JobDetail'; import JobOutput from './JobOutput'; diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.js b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.js index 89709f8fdb..56975c6807 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.js +++ b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.js @@ -31,8 +31,8 @@ import Search from 'components/Search'; import StatusIcon from 'components/StatusIcon'; import { getJobModel, isJobRunning } from 'util/jobs'; -import useRequest, { useDismissableError } from 'util/useRequest'; -import useInterval from 'util/useInterval'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; +import useInterval from 'hooks/useInterval'; import { parseQueryString, mergeParams, @@ -40,7 +40,7 @@ import { getQSConfig, updateQueryString, } from 'util/qs'; -import useIsMounted from 'util/useIsMounted'; +import useIsMounted from 'hooks/useIsMounted'; import JobEvent from './JobEvent'; import JobEventSkeleton from './JobEventSkeleton'; import PageControls from './PageControls'; diff --git a/awx/ui_next/src/screens/Job/JobTypeRedirect.js b/awx/ui_next/src/screens/Job/JobTypeRedirect.js index 6e9ac3e9d4..69c906dc4c 100644 --- a/awx/ui_next/src/screens/Job/JobTypeRedirect.js +++ b/awx/ui_next/src/screens/Job/JobTypeRedirect.js @@ -3,7 +3,7 @@ import { Redirect, Link } from 'react-router-dom'; import { PageSection, Card } from '@patternfly/react-core'; import { t } from '@lingui/macro'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { UnifiedJobsAPI } from 'api'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/useWsWorkflowOutput.js b/awx/ui_next/src/screens/Job/WorkflowOutput/useWsWorkflowOutput.js index 36f5a2cfa8..b1bac50b05 100644 --- a/awx/ui_next/src/screens/Job/WorkflowOutput/useWsWorkflowOutput.js +++ b/awx/ui_next/src/screens/Job/WorkflowOutput/useWsWorkflowOutput.js @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import useWebsocket from 'util/useWebsocket'; +import useWebsocket from 'hooks/useWebsocket'; import { WorkflowJobsAPI } from 'api'; const fetchWorkflowNodes = async (jobId, pageNo = 1, nodes = []) => { diff --git a/awx/ui_next/src/screens/Job/useWsJob.js b/awx/ui_next/src/screens/Job/useWsJob.js index 5fa922eeff..e78c121840 100644 --- a/awx/ui_next/src/screens/Job/useWsJob.js +++ b/awx/ui_next/src/screens/Job/useWsJob.js @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import useWebsocket from 'util/useWebsocket'; +import useWebsocket from 'hooks/useWebsocket'; import { getJobModel } from 'util/jobs'; export default function useWsJob(initialJob) { diff --git a/awx/ui_next/src/screens/Login/Login.js b/awx/ui_next/src/screens/Login/Login.js index 5e4d3cb52c..b16419c6d0 100644 --- a/awx/ui_next/src/screens/Login/Login.js +++ b/awx/ui_next/src/screens/Login/Login.js @@ -25,7 +25,7 @@ import { GithubIcon, UserCircleIcon, } from '@patternfly/react-icons'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { AuthAPI, RootAPI } from 'api'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJob.js b/awx/ui_next/src/screens/ManagementJob/ManagementJob.js index e9ddb4ee9e..b656397928 100644 --- a/awx/ui_next/src/screens/ManagementJob/ManagementJob.js +++ b/awx/ui_next/src/screens/ManagementJob/ManagementJob.js @@ -20,7 +20,7 @@ import NotificationList from 'components/NotificationList'; import RoutedTabs from 'components/RoutedTabs'; import { Schedules } from 'components/Schedule'; import { useConfig } from 'contexts/Config'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; function ManagementJob({ setBreadcrumb }) { const basePath = '/management_jobs'; diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.js b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.js index d9236a65b8..a3c2f7af73 100644 --- a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.js +++ b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.js @@ -14,7 +14,7 @@ import PaginatedTable, { } from 'components/PaginatedTable'; import { useConfig } from 'contexts/Config'; import { parseQueryString, getQSConfig } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ManagementJobListItem from './ManagementJobListItem'; diff --git a/awx/ui_next/src/screens/Metrics/Metrics.js b/awx/ui_next/src/screens/Metrics/Metrics.js index b72c7e8e0a..439fead8a7 100644 --- a/awx/ui_next/src/screens/Metrics/Metrics.js +++ b/awx/ui_next/src/screens/Metrics/Metrics.js @@ -15,7 +15,7 @@ import { } from '@patternfly/react-core'; import { MetricsAPI, InstancesAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentEmpty from 'components/ContentEmpty'; import ScreenHeader from 'components/ScreenHeader/ScreenHeader'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.js b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.js index 23394d9c1d..e88a298c5f 100644 --- a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.js +++ b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.js @@ -12,7 +12,7 @@ import { useRouteMatch, useLocation, } from 'react-router-dom'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; import { NotificationTemplatesAPI } from 'api'; diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.js b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.js index 9c11914dbf..6200943b91 100644 --- a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.js +++ b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.js @@ -5,7 +5,7 @@ import { t } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; import { CardBody } from 'components/Card'; import { NotificationTemplatesAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import NotificationTemplateForm from './shared/NotificationTemplateForm'; diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js index 4f8ecf798a..849649b36b 100644 --- a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js +++ b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js @@ -21,7 +21,7 @@ import CodeDetail from 'components/DetailList/CodeDetail'; import DeleteButton from 'components/DeleteButton'; import ErrorDetail from 'components/ErrorDetail'; import { NotificationTemplatesAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import hasCustomMessages from '../shared/hasCustomMessages'; import { NOTIFICATION_TYPES } from '../constants'; diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js index 857adffaa1..07d283a42b 100644 --- a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js +++ b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js @@ -19,8 +19,8 @@ import PaginatedTable, { import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; import DataListToolbar from 'components/DataListToolbar'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { getQSConfig, parseQueryString } from 'util/qs'; import NotificationTemplateListItem from './NotificationTemplateListItem'; diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js index 4ba5ec1ca5..b505fc48ff 100644 --- a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js +++ b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js @@ -13,7 +13,7 @@ import StatusLabel from 'components/StatusLabel'; import CopyButton from 'components/CopyButton'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { NOTIFICATION_TYPES } from '../constants'; const NUM_RETRIES = 25; diff --git a/awx/ui_next/src/screens/Organization/Organization.js b/awx/ui_next/src/screens/Organization/Organization.js index 1a74c4769e..376aa6617f 100644 --- a/awx/ui_next/src/screens/Organization/Organization.js +++ b/awx/ui_next/src/screens/Organization/Organization.js @@ -13,7 +13,7 @@ import { } from 'react-router-dom'; import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; import NotificationList from 'components/NotificationList/NotificationList'; diff --git a/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.js b/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.js index 76d5184df0..f305f77951 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.js +++ b/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.js @@ -1,7 +1,7 @@ import React, { useCallback, useEffect, useState } from 'react'; import { useHistory } from 'react-router-dom'; import { PageSection, Card } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { CredentialsAPI, OrganizationsAPI } from 'api'; import { CardBody } from 'components/Card'; import ContentError from 'components/ContentError'; diff --git a/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.js b/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.js index 82383e5a30..73b0bd7d1f 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.js +++ b/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.js @@ -13,7 +13,7 @@ import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import DeleteButton from 'components/DeleteButton'; import ErrorDetail from 'components/ErrorDetail'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { useConfig } from 'contexts/Config'; import ExecutionEnvironmentDetail from 'components/ExecutionEnvironmentDetail'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; diff --git a/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js b/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js index aae6ed5dc0..9433e1a917 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js +++ b/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js @@ -6,7 +6,7 @@ import { Card } from '@patternfly/react-core'; import { OrganizationsAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import PaginatedTable, { HeaderRow, HeaderCell, diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.js b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.js index 04178b95c7..55bdfea1d5 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.js +++ b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.js @@ -4,7 +4,7 @@ import { t, Plural } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; import { OrganizationsAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import DataListToolbar from 'components/DataListToolbar'; import ErrorDetail from 'components/ErrorDetail'; @@ -15,7 +15,7 @@ import PaginatedTable, { ToolbarDeleteButton, } from 'components/PaginatedTable'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; import OrganizationListItem from './OrganizationListItem'; diff --git a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.js b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.js index 206884c36e..2bf59fda83 100644 --- a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.js +++ b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.js @@ -9,7 +9,7 @@ import PaginatedTable, { HeaderCell, } from 'components/PaginatedTable'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import OrganizationTeamListItem from './OrganizationTeamListItem'; const QS_CONFIG = getQSConfig('team', { diff --git a/awx/ui_next/src/screens/Project/Project.js b/awx/ui_next/src/screens/Project/Project.js index fc73c02f71..b6e4458f5e 100644 --- a/awx/ui_next/src/screens/Project/Project.js +++ b/awx/ui_next/src/screens/Project/Project.js @@ -13,7 +13,7 @@ import { import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; import { useConfig } from 'contexts/Config'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; diff --git a/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.js b/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.js index 7b149e7df5..c22f68694a 100644 --- a/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.js +++ b/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.js @@ -23,7 +23,7 @@ import ExecutionEnvironmentDetail from 'components/ExecutionEnvironmentDetail'; import CredentialChip from 'components/CredentialChip'; import { ProjectsAPI } from 'api'; import { toTitleCase } from 'util/strings'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; import StatusLabel from 'components/StatusLabel'; import { formatDateString } from 'util/dates'; diff --git a/awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.js b/awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.js index 488081efba..58ad4cf9d7 100644 --- a/awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.js +++ b/awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.js @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import useWebsocket from 'util/useWebsocket'; +import useWebsocket from 'hooks/useWebsocket'; import { ProjectsAPI } from 'api'; export default function useWsProjects(initialProject) { diff --git a/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js b/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js index d792692ca0..d3fc8f9425 100644 --- a/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js +++ b/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js @@ -14,8 +14,8 @@ import PaginatedTable, { ToolbarDeleteButton, } from 'components/PaginatedTable'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useSelected from 'util/useSelected'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useSelected from 'hooks/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import ProjectTemplatesListItem from './ProjectJobTemplatesListItem'; const QS_CONFIG = getQSConfig('template', { diff --git a/awx/ui_next/src/screens/Project/ProjectList/ProjectList.js b/awx/ui_next/src/screens/Project/ProjectList/ProjectList.js index 280744aab6..9a71767310 100644 --- a/awx/ui_next/src/screens/Project/ProjectList/ProjectList.js +++ b/awx/ui_next/src/screens/Project/ProjectList/ProjectList.js @@ -6,7 +6,7 @@ import { ProjectsAPI } from 'api'; import useRequest, { useDeleteItems, useDismissableError, -} from 'util/useRequest'; +} from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import DataListToolbar from 'components/DataListToolbar'; import ErrorDetail from 'components/ErrorDetail'; @@ -16,8 +16,8 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; -import useExpanded from 'util/useExpanded'; +import useSelected from 'hooks/useSelected'; +import useExpanded from 'hooks/useExpanded'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; import { getQSConfig, parseQueryString } from 'util/qs'; import useWsProjects from './useWsProjects'; diff --git a/awx/ui_next/src/screens/Project/ProjectList/useWsProjects.js b/awx/ui_next/src/screens/Project/ProjectList/useWsProjects.js index b491150832..6dd8c9c3a9 100644 --- a/awx/ui_next/src/screens/Project/ProjectList/useWsProjects.js +++ b/awx/ui_next/src/screens/Project/ProjectList/useWsProjects.js @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import useWebsocket from 'util/useWebsocket'; +import useWebsocket from 'hooks/useWebsocket'; export default function useWsProjects(initialProjects) { const [projects, setProjects] = useState(initialProjects); diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.js b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.js index 38c027d1cc..72a416a526 100644 --- a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.js +++ b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.js @@ -7,7 +7,7 @@ import { required } from 'util/validators'; import AnsibleSelect from 'components/AnsibleSelect'; import FormField from 'components/FormField'; import Popover from 'components/Popover'; -import useBrandName from 'util/useBrandName'; +import useBrandName from 'hooks/useBrandName'; const ManualSubForm = ({ localPath, diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.js b/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.js index fe4ec9c8a0..68306b97d6 100644 --- a/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.js +++ b/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.js @@ -6,7 +6,7 @@ import { SyncIcon } from '@patternfly/react-icons'; import { number } from 'prop-types'; import { t } from '@lingui/macro'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js b/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js index 01e9e3ff30..bf97ed315b 100644 --- a/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js +++ b/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js @@ -11,7 +11,7 @@ import { DetailList } from 'components/DetailList'; import RoutedTabs from 'components/RoutedTabs'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { SettingDetail } from '../../shared'; diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.js b/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.js index c13c3c405e..8f98522158 100644 --- a/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.js +++ b/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.js index 51ba5ae8ec..6c369917cc 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.js @@ -11,7 +11,7 @@ import { DetailList } from 'components/DetailList'; import RoutedTabs from 'components/RoutedTabs'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { SettingDetail } from '../../shared'; diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.js index c6dc5fd396..27c4461ed5 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.js index 8795b5d2ae..7a9b986488 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.js index 5661893562..c7ee717d74 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.js index 918cef168a..6c7f01cd3f 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.js index 22a57c0d54..e7f015b603 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.js b/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.js index f4c330cbb9..2b8303e7a2 100644 --- a/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.js +++ b/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js index df209c4811..2a5f5efc35 100644 --- a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js +++ b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DetailList } from 'components/DetailList'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.js b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.js index 5082e3dfd7..638cefe802 100644 --- a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.js +++ b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.js b/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.js index 2a578665e8..b98f83182a 100644 --- a/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.js +++ b/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.js @@ -9,7 +9,7 @@ import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import { DetailList } from 'components/DetailList'; import RoutedTabs from 'components/RoutedTabs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; import { SettingsAPI } from 'api'; diff --git a/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js b/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js index 6b65bcd4bd..f51c967f5e 100644 --- a/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js +++ b/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { formatJson } from '../../shared/settingUtils'; import { diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.js b/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.js index 16a4144f9d..9635c18d43 100644 --- a/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.js +++ b/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.js @@ -10,7 +10,7 @@ import ContentLoading from 'components/ContentLoading'; import { DetailList } from 'components/DetailList'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; import { SettingDetail } from '../../shared'; diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.js b/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.js index 087d3ee0ff..6e9a69c6b9 100644 --- a/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.js +++ b/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout, FormFullWidthLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.js b/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.js index daf78859f7..63c3a4a775 100644 --- a/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.js +++ b/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DetailList } from 'components/DetailList'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; diff --git a/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.js b/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.js index c0baf37bf2..36552e1870 100644 --- a/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.js +++ b/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.js @@ -10,8 +10,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { formatJson } from '../../shared/settingUtils'; import { diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js index 2bff8f0b8f..fc44f471b1 100644 --- a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js +++ b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js @@ -10,7 +10,7 @@ import { DetailList } from 'components/DetailList'; import RoutedTabs from 'components/RoutedTabs'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { SettingDetail } from '../../shared'; diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js index bebb6b7e0d..34f94d218c 100644 --- a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js +++ b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js @@ -9,8 +9,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { BooleanField, diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js index dd2b96ea62..a99b2f60b7 100644 --- a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js +++ b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js @@ -10,7 +10,7 @@ import ContentLoading from 'components/ContentLoading'; import { DetailList } from 'components/DetailList'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI, ExecutionEnvironmentsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; import { SettingDetail } from '../../shared'; diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js index 48882b74d3..f4166e6c76 100644 --- a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js +++ b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js @@ -10,8 +10,8 @@ import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { ExecutionEnvironmentLookup } from 'components/Lookup'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI, ExecutionEnvironmentsAPI } from 'api'; import { BooleanField, diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js index fd69f832ef..8ee81b790c 100644 --- a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js +++ b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DetailList } from 'components/DetailList'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.js b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.js index 42d269e93f..f49b8c009d 100644 --- a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.js +++ b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { EncryptedField, InputField } from '../../shared/SharedFields'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; diff --git a/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.js b/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.js index 7f179c94fd..2b1222717d 100644 --- a/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.js +++ b/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DetailList } from 'components/DetailList'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; diff --git a/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.js b/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.js index 9b5490929b..aec298fb34 100644 --- a/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.js +++ b/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { RevertAllAlert, RevertFormActionGroup } from '../../shared'; import { diff --git a/awx/ui_next/src/screens/Setting/SettingList.js b/awx/ui_next/src/screens/Setting/SettingList.js index 5e1d76b7fb..750a093466 100644 --- a/awx/ui_next/src/screens/Setting/SettingList.js +++ b/awx/ui_next/src/screens/Setting/SettingList.js @@ -15,7 +15,7 @@ import { import styled from 'styled-components'; import { useConfig } from 'contexts/Config'; import ContentLoading from 'components/ContentLoading/ContentLoading'; -import useBrandName from 'util/useBrandName'; +import useBrandName from 'hooks/useBrandName'; const SplitLayout = styled(PageSection)` column-count: 1; diff --git a/awx/ui_next/src/screens/Setting/Settings.js b/awx/ui_next/src/screens/Setting/Settings.js index fcef7c6f1d..fd56512ea7 100644 --- a/awx/ui_next/src/screens/Setting/Settings.js +++ b/awx/ui_next/src/screens/Setting/Settings.js @@ -8,7 +8,7 @@ import ScreenHeader from 'components/ScreenHeader'; import { SettingsProvider } from 'contexts/Settings'; import { useConfig } from 'contexts/Config'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import AzureAD from './AzureAD'; import GitHub from './GitHub'; import GoogleOAuth2 from './GoogleOAuth2'; diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js index e4fffa8470..baa456822f 100644 --- a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js +++ b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js @@ -12,7 +12,7 @@ import { WizardFooter, } from '@patternfly/react-core'; import { ConfigAPI, SettingsAPI, RootAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import { FormSubmitError } from 'components/FormField'; diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js index 0dcd58d0c0..938d68b827 100644 --- a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js +++ b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js @@ -21,8 +21,8 @@ import { ExclamationTriangleIcon } from '@patternfly/react-icons'; import { ConfigAPI } from 'api'; import { formatDateStringUTC } from 'util/dates'; -import useRequest from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import ErrorDetail from 'components/ErrorDetail'; import ContentEmpty from 'components/ContentEmpty'; import ContentLoading from 'components/ContentLoading'; diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js index 5ab097d9c1..c1aee40f57 100644 --- a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js +++ b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js @@ -17,7 +17,7 @@ import { } from '@patternfly/react-core'; import { useConfig } from 'contexts/Config'; import getDocsBaseUrl from 'util/getDocsBaseUrl'; -import useModal from 'util/useModal'; +import useModal from 'hooks/useModal'; import FormField, { PasswordField } from 'components/FormField'; import Popover from 'components/Popover'; import SubscriptionModal from './SubscriptionModal'; diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.js b/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.js index b42e385f09..b8632a9d78 100644 --- a/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.js +++ b/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DetailList } from 'components/DetailList'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.js b/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.js index 2ce93bb413..dcf90ffc33 100644 --- a/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.js +++ b/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.js @@ -8,8 +8,8 @@ import ContentLoading from 'components/ContentLoading'; import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { ChoiceField, diff --git a/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.js b/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.js index 932292c2b8..36b90a5820 100644 --- a/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.js +++ b/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.js @@ -9,7 +9,7 @@ import ContentLoading from 'components/ContentLoading'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; import { SettingsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { DetailList } from 'components/DetailList'; import { useConfig } from 'contexts/Config'; import { useSettings } from 'contexts/Settings'; diff --git a/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.js b/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.js index 1c551ab650..912eaf52d8 100644 --- a/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.js +++ b/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.js @@ -9,8 +9,8 @@ import { FormSubmitError } from 'components/FormField'; import { FormColumnLayout } from 'components/FormLayout'; import { useSettings } from 'contexts/Settings'; import { useConfig } from 'contexts/Config'; -import useModal from 'util/useModal'; -import useRequest from 'util/useRequest'; +import useModal from 'hooks/useModal'; +import useRequest from 'hooks/useRequest'; import { SettingsAPI } from 'api'; import { ChoiceField, diff --git a/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.js b/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.js index f85b30251d..6d6f1e4a32 100644 --- a/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.js +++ b/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.js @@ -11,7 +11,7 @@ import { DetailList, Detail } from 'components/DetailList'; import ErrorDetail from 'components/ErrorDetail'; import { formatDateString } from 'util/dates'; import { TeamsAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; function TeamDetail({ team }) { const { name, description, created, modified, summary_fields } = team; diff --git a/awx/ui_next/src/screens/Team/TeamList/TeamList.js b/awx/ui_next/src/screens/Team/TeamList/TeamList.js index 1d8c16d076..3c08621d28 100644 --- a/awx/ui_next/src/screens/Team/TeamList/TeamList.js +++ b/awx/ui_next/src/screens/Team/TeamList/TeamList.js @@ -5,7 +5,7 @@ import { t } from '@lingui/macro'; import { Card, PageSection } from '@patternfly/react-core'; import { TeamsAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import AlertModal from 'components/AlertModal'; import DataListToolbar from 'components/DataListToolbar'; import ErrorDetail from 'components/ErrorDetail'; @@ -15,7 +15,7 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import { getQSConfig, parseQueryString } from 'util/qs'; import TeamListItem from './TeamListItem'; diff --git a/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.js b/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.js index fa0b571852..692149e108 100644 --- a/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.js +++ b/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.js @@ -10,7 +10,7 @@ import { } from '@patternfly/react-core'; import { CubesIcon } from '@patternfly/react-icons'; import { TeamsAPI, RolesAPI, UsersAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import DataListToolbar from 'components/DataListToolbar'; import PaginatedTable, { HeaderCell, diff --git a/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.js b/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.js index 9857e73065..caa0a14fb3 100644 --- a/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.js +++ b/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.js @@ -29,7 +29,7 @@ import ErrorDetail from 'components/ErrorDetail'; import { LaunchButton } from 'components/LaunchButton'; import { VariablesDetail } from 'components/CodeEditor'; import { JobTemplatesAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import ExecutionEnvironmentDetail from 'components/ExecutionEnvironmentDetail'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; diff --git a/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.js b/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.js index 6109cda7eb..20a832593c 100644 --- a/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.js +++ b/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.js @@ -5,7 +5,7 @@ import { Redirect, useHistory } from 'react-router-dom'; import { JobTemplate } from 'types'; import { JobTemplatesAPI, ProjectsAPI } from 'api'; import { getAddedAndRemoved } from 'util/lists'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentLoading from 'components/ContentLoading'; import { CardBody } from 'components/Card'; import JobTemplateForm from '../shared/JobTemplateForm'; diff --git a/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.js b/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.js index 52e7bbe07e..7c9d34f9b8 100644 --- a/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.js +++ b/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.js @@ -12,14 +12,14 @@ import { InstanceGroupsAPI, RootAPI, } from 'api'; -import useDebounce from 'util/useDebounce'; +import useDebounce from 'hooks/useDebounce'; import { mountWithContexts, waitForElement, } from '../../../../testUtils/enzymeHelpers'; import JobTemplateEdit from './JobTemplateEdit'; -jest.mock('../../../util/useDebounce'); +jest.mock('../../../hooks/useDebounce'); jest.mock('../../../api/models/Credentials'); jest.mock('../../../api/models/CredentialTypes'); jest.mock('../../../api/models/JobTemplates'); diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyList.js b/awx/ui_next/src/screens/Template/Survey/SurveyList.js index ec542fb259..ed925d92d1 100644 --- a/awx/ui_next/src/screens/Template/Survey/SurveyList.js +++ b/awx/ui_next/src/screens/Template/Survey/SurveyList.js @@ -16,7 +16,7 @@ import ContentLoading from 'components/ContentLoading'; import AlertModal from 'components/AlertModal'; import { ToolbarAddButton } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; +import useSelected from 'hooks/useSelected'; import SurveyListItem from './SurveyListItem'; import SurveyToolbar from './SurveyToolbar'; import SurveyPreviewModal from './SurveyPreviewModal'; diff --git a/awx/ui_next/src/screens/Template/Template.js b/awx/ui_next/src/screens/Template/Template.js index d26fce9047..a905ff1ff9 100644 --- a/awx/ui_next/src/screens/Template/Template.js +++ b/awx/ui_next/src/screens/Template/Template.js @@ -14,7 +14,7 @@ import { } from 'react-router-dom'; import RoutedTabs from 'components/RoutedTabs'; import { useConfig } from 'contexts/Config'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import JobList from 'components/JobList'; import NotificationList from 'components/NotificationList'; diff --git a/awx/ui_next/src/screens/Template/TemplateSurvey.js b/awx/ui_next/src/screens/Template/TemplateSurvey.js index 06871c7fcf..73632deb9e 100644 --- a/awx/ui_next/src/screens/Template/TemplateSurvey.js +++ b/awx/ui_next/src/screens/Template/TemplateSurvey.js @@ -6,7 +6,7 @@ import { JobTemplatesAPI, WorkflowJobTemplatesAPI } from 'api'; import ContentError from 'components/ContentError'; import AlertModal from 'components/AlertModal'; import ErrorDetail from 'components/ErrorDetail'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { SurveyList, SurveyQuestionAdd, SurveyQuestionEdit } from './Survey'; function TemplateSurvey({ template, canEdit }) { diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplate.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplate.js index b1c2dd175f..44b80de0a6 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplate.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplate.js @@ -14,7 +14,7 @@ import { } from 'react-router-dom'; import RoutedTabs from 'components/RoutedTabs'; import { useConfig } from 'contexts/Config'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import AppendBody from 'components/AppendBody'; import ContentError from 'components/ContentError'; import FullPage from 'components/FullPage'; diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.js index e627aa0c5d..f51df0f9cf 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.js @@ -6,7 +6,7 @@ import { CardBody } from 'components/Card'; import { WorkflowJobTemplatesAPI, OrganizationsAPI, UsersAPI } from 'api'; import { useConfig } from 'contexts/Config'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import WorkflowJobTemplateForm from '../shared/WorkflowJobTemplateForm'; diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js index 25e3d72fd0..cc33990a3b 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js @@ -24,7 +24,7 @@ import { LaunchButton } from 'components/LaunchButton'; import Sparkline from 'components/Sparkline'; import { toTitleCase } from 'util/strings'; import { relatedResourceDeleteRequests } from 'util/getRelatedResourceDeleteDetails'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; function WorkflowJobTemplateDetail({ template }) { const { diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.js index 21603d48ad..409f89a01c 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.js @@ -5,7 +5,7 @@ import { CardBody } from 'components/Card'; import { getAddedAndRemoved } from 'util/lists'; import { WorkflowJobTemplatesAPI, OrganizationsAPI, UsersAPI } from 'api'; import { useConfig } from 'contexts/Config'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import { WorkflowJobTemplateForm } from '../shared'; diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.js index 791d6101fe..45c8e9b478 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.js @@ -9,14 +9,14 @@ import { UsersAPI, InventoriesAPI, } from 'api'; -import useDebounce from 'util/useDebounce'; +import useDebounce from 'hooks/useDebounce'; import { mountWithContexts, waitForElement, } from '../../../../testUtils/enzymeHelpers'; import WorkflowJobTemplateEdit from './WorkflowJobTemplateEdit'; -jest.mock('../../../util/useDebounce'); +jest.mock('../../../hooks/useDebounce'); jest.mock('../../../api/models/WorkflowJobTemplates'); jest.mock('../../../api/models/Organizations'); jest.mock('../../../api/models/Labels'); diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js index d6e1df9ce8..1bcdaa0398 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js @@ -15,7 +15,7 @@ import { import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import mergeExtraVars from 'util/prompt/mergeExtraVars'; import getSurveyValues from 'util/prompt/getSurveyValues'; import { parseVariableField } from 'util/yaml'; diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js index 3a70c4d3f9..7f7eec7552 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js @@ -5,7 +5,7 @@ import { t } from '@lingui/macro'; import { func, shape } from 'prop-types'; import { InventorySourcesAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import DataListToolbar from 'components/DataListToolbar'; import CheckboxListItem from 'components/CheckboxListItem'; import PaginatedTable, { diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js index c3ae4e0a88..7ffc349ac2 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js @@ -5,7 +5,7 @@ import { t } from '@lingui/macro'; import { func, shape } from 'prop-types'; import { JobTemplatesAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import DataListToolbar from 'components/DataListToolbar'; import CheckboxListItem from 'components/CheckboxListItem'; import PaginatedTable, { diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js index 7099bf6a4c..573a667023 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js @@ -5,7 +5,7 @@ import { t } from '@lingui/macro'; import { func, shape } from 'prop-types'; import { ProjectsAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import DataListToolbar from 'components/DataListToolbar'; import CheckboxListItem from 'components/CheckboxListItem'; import PaginatedTable, { diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js index 97b2ca7fef..714f4c491e 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js @@ -5,7 +5,7 @@ import { t } from '@lingui/macro'; import { func, shape } from 'prop-types'; import { WorkflowJobTemplatesAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import DataListToolbar from 'components/DataListToolbar'; import CheckboxListItem from 'components/CheckboxListItem'; import PaginatedTable, { diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js index 384ffcf037..550319df41 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js @@ -10,7 +10,7 @@ import { import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import PromptDetail from 'components/PromptDetail'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { jsonToYaml } from 'util/yaml'; import { JobTemplatesAPI, WorkflowJobTemplatesAPI } from 'api'; import getNodeType from '../../shared/WorkflowJobTemplateVisualizerUtils'; diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js index a82fa4bfb7..d2756dafe4 100644 --- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js +++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js @@ -15,7 +15,7 @@ import { layoutGraph } from 'components/Workflow/WorkflowUtils'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import workflowReducer from 'components/Workflow/workflowReducer'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { WorkflowApprovalTemplatesAPI, WorkflowJobTemplateNodesAPI, diff --git a/awx/ui_next/src/screens/Template/shared/JobTemplateForm.js b/awx/ui_next/src/screens/Template/shared/JobTemplateForm.js index 90e27e5904..86a30978ac 100644 --- a/awx/ui_next/src/screens/Template/shared/JobTemplateForm.js +++ b/awx/ui_next/src/screens/Template/shared/JobTemplateForm.js @@ -15,8 +15,8 @@ import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; import AnsibleSelect from 'components/AnsibleSelect'; import { TagMultiSelect } from 'components/MultiSelect'; -import useRequest from 'util/useRequest'; -import useBrandName from 'util/useBrandName'; +import useRequest from 'hooks/useRequest'; +import useBrandName from 'hooks/useBrandName'; import FormActionGroup from 'components/FormActionGroup'; import FormField, { CheckboxField, @@ -41,7 +41,7 @@ import { } from 'components/Lookup'; import Popover from 'components/Popover'; import { JobTemplatesAPI } from 'api'; -import useIsMounted from 'util/useIsMounted'; +import useIsMounted from 'hooks/useIsMounted'; import LabelSelect from './LabelSelect'; import PlaybookSelect from './PlaybookSelect'; import WebhookSubForm from './WebhookSubForm'; diff --git a/awx/ui_next/src/screens/Template/shared/LabelSelect.js b/awx/ui_next/src/screens/Template/shared/LabelSelect.js index d1142a3063..6d88e9aa96 100644 --- a/awx/ui_next/src/screens/Template/shared/LabelSelect.js +++ b/awx/ui_next/src/screens/Template/shared/LabelSelect.js @@ -4,7 +4,7 @@ import { Select, SelectOption, SelectVariant } from '@patternfly/react-core'; import { t } from '@lingui/macro'; import { LabelsAPI } from 'api'; import { useSyncedSelectValue } from 'components/MultiSelect'; -import useIsMounted from 'util/useIsMounted'; +import useIsMounted from 'hooks/useIsMounted'; async function loadLabelOptions(setLabels, onError, isMounted) { if (!isMounted.current) { diff --git a/awx/ui_next/src/screens/Template/shared/PlaybookSelect.js b/awx/ui_next/src/screens/Template/shared/PlaybookSelect.js index e13623ca60..257c4fa8e2 100644 --- a/awx/ui_next/src/screens/Template/shared/PlaybookSelect.js +++ b/awx/ui_next/src/screens/Template/shared/PlaybookSelect.js @@ -4,7 +4,7 @@ import { number, string, oneOfType } from 'prop-types'; import { t } from '@lingui/macro'; import { SelectVariant, Select, SelectOption } from '@patternfly/react-core'; import { ProjectsAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; function PlaybookSelect({ projectId, diff --git a/awx/ui_next/src/screens/Template/shared/WebhookSubForm.js b/awx/ui_next/src/screens/Template/shared/WebhookSubForm.js index 1d2277ab87..cd3edcef18 100644 --- a/awx/ui_next/src/screens/Template/shared/WebhookSubForm.js +++ b/awx/ui_next/src/screens/Template/shared/WebhookSubForm.js @@ -12,7 +12,7 @@ import { import { useField, useFormikContext } from 'formik'; import ContentError from 'components/ContentError'; import ContentLoading from 'components/ContentLoading'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { FormColumnLayout } from 'components/FormLayout'; import { CredentialLookup } from 'components/Lookup'; import AnsibleSelect from 'components/AnsibleSelect'; diff --git a/awx/ui_next/src/screens/User/User.js b/awx/ui_next/src/screens/User/User.js index 709ed42c06..00f70b78c6 100644 --- a/awx/ui_next/src/screens/User/User.js +++ b/awx/ui_next/src/screens/User/User.js @@ -11,7 +11,7 @@ import { } from 'react-router-dom'; import { CaretLeftIcon } from '@patternfly/react-icons'; import { Card, PageSection } from '@patternfly/react-core'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { UsersAPI } from 'api'; import ContentError from 'components/ContentError'; import RoutedTabs from 'components/RoutedTabs'; diff --git a/awx/ui_next/src/screens/User/UserDetail/UserDetail.js b/awx/ui_next/src/screens/User/UserDetail/UserDetail.js index e71c6ed6db..8bf1132f55 100644 --- a/awx/ui_next/src/screens/User/UserDetail/UserDetail.js +++ b/awx/ui_next/src/screens/User/UserDetail/UserDetail.js @@ -11,7 +11,7 @@ import { DetailList, Detail } from 'components/DetailList'; import ErrorDetail from 'components/ErrorDetail'; import { formatDateString } from 'util/dates'; import { UsersAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; function UserDetail({ user }) { const { diff --git a/awx/ui_next/src/screens/User/UserList/UserList.js b/awx/ui_next/src/screens/User/UserList/UserList.js index e09eabdae4..94c7793d7e 100644 --- a/awx/ui_next/src/screens/User/UserList/UserList.js +++ b/awx/ui_next/src/screens/User/UserList/UserList.js @@ -13,8 +13,8 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useRequest, { useDeleteItems } from 'util/useRequest'; -import useSelected from 'util/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { getQSConfig, parseQueryString } from 'util/qs'; import UserListItem from './UserListItem'; diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.js b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.js index 0efc947276..ca79f24026 100644 --- a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.js +++ b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.js @@ -6,7 +6,7 @@ import PaginatedTable, { HeaderRow, HeaderCell, } from 'components/PaginatedTable'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import { UsersAPI } from 'api'; import { getQSConfig, parseQueryString } from 'util/qs'; import UserOrganizationListItem from './UserOrganizationListItem'; diff --git a/awx/ui_next/src/screens/User/UserRoles/UserRolesList.js b/awx/ui_next/src/screens/User/UserRoles/UserRolesList.js index 42681f2360..c24fdec91d 100644 --- a/awx/ui_next/src/screens/User/UserRoles/UserRolesList.js +++ b/awx/ui_next/src/screens/User/UserRoles/UserRolesList.js @@ -11,7 +11,7 @@ import { import { CubesIcon } from '@patternfly/react-icons'; import { getQSConfig, parseQueryString } from 'util/qs'; import { UsersAPI, RolesAPI } from 'api'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import PaginatedTable, { HeaderRow, HeaderCell, diff --git a/awx/ui_next/src/screens/User/UserTeams/UserTeamList.js b/awx/ui_next/src/screens/User/UserTeams/UserTeamList.js index 57f4840461..66fc5426e7 100644 --- a/awx/ui_next/src/screens/User/UserTeams/UserTeamList.js +++ b/awx/ui_next/src/screens/User/UserTeams/UserTeamList.js @@ -15,8 +15,8 @@ import ErrorDetail from 'components/ErrorDetail'; import useRequest, { useDeleteItems, useDismissableError, -} from 'util/useRequest'; -import useSelected from 'util/useSelected'; +} from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { TeamsAPI, UsersAPI } from 'api'; import { getQSConfig, mergeParams, parseQueryString } from 'util/qs'; diff --git a/awx/ui_next/src/screens/User/UserToken/UserToken.js b/awx/ui_next/src/screens/User/UserToken/UserToken.js index 977a949173..ac689c7ae8 100644 --- a/awx/ui_next/src/screens/User/UserToken/UserToken.js +++ b/awx/ui_next/src/screens/User/UserToken/UserToken.js @@ -14,7 +14,7 @@ import { Card, PageSection } from '@patternfly/react-core'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; import { TokensAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import UserTokenDetail from '../UserTokenDetail'; function UserToken({ setBreadcrumb, user }) { diff --git a/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.js b/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.js index d49a564a02..93bc53b6d6 100644 --- a/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.js +++ b/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.js @@ -3,7 +3,7 @@ import { useHistory, useParams } from 'react-router-dom'; import { CardBody } from 'components/Card'; import { TokensAPI, UsersAPI } from 'api'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import UserTokenFrom from '../shared/UserTokenForm'; function UserTokenAdd({ onSuccessfulAdd }) { diff --git a/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.js b/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.js index 07b347015f..c6e335eafc 100644 --- a/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.js +++ b/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.js @@ -10,7 +10,7 @@ import { DetailList, Detail, UserDateDetail } from 'components/DetailList'; import ErrorDetail from 'components/ErrorDetail'; import { TokensAPI } from 'api'; import { formatDateString } from 'util/dates'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { toTitleCase } from 'util/strings'; function UserTokenDetail({ token }) { diff --git a/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.js b/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.js index 37a5556374..ffca5e9363 100644 --- a/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.js +++ b/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.js @@ -9,8 +9,8 @@ import PaginatedTable, { ToolbarAddButton, ToolbarDeleteButton, } from 'components/PaginatedTable'; -import useSelected from 'util/useSelected'; -import useRequest, { useDeleteItems } from 'util/useRequest'; +import useSelected from 'hooks/useSelected'; +import useRequest, { useDeleteItems } from 'hooks/useRequest'; import { UsersAPI, TokensAPI } from 'api'; import DataListToolbar from 'components/DataListToolbar'; import AlertModal from 'components/AlertModal'; diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.js b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.js index cd5405d703..351e380fa2 100644 --- a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.js +++ b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.js @@ -12,7 +12,7 @@ import { useRouteMatch, useLocation, } from 'react-router-dom'; -import useRequest from 'util/useRequest'; +import useRequest from 'hooks/useRequest'; import RoutedTabs from 'components/RoutedTabs'; import ContentError from 'components/ContentError'; import { WorkflowApprovalsAPI } from 'api'; diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js index 76f34dbd7f..72fe964cee 100644 --- a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js +++ b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js @@ -10,7 +10,7 @@ import { Detail, DetailList, UserDateDetail } from 'components/DetailList'; import ErrorDetail from 'components/ErrorDetail'; import { formatDateString, secondsToHHMMSS } from 'util/dates'; import { WorkflowApprovalsAPI } from 'api'; -import useRequest, { useDismissableError } from 'util/useRequest'; +import useRequest, { useDismissableError } from 'hooks/useRequest'; import { WorkflowApproval } from 'types'; import WorkflowApprovalStatus from '../shared/WorkflowApprovalStatus'; diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js index 79d0885314..d498cd574f 100644 --- a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js +++ b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js @@ -14,8 +14,8 @@ import DataListToolbar from 'components/DataListToolbar'; import useRequest, { useDeleteItems, useDismissableError, -} from 'util/useRequest'; -import useSelected from 'util/useSelected'; +} from 'hooks/useRequest'; +import useSelected from 'hooks/useSelected'; import { getQSConfig, parseQueryString } from 'util/qs'; import WorkflowApprovalListItem from './WorkflowApprovalListItem'; import useWsWorkflowApprovals from './useWsWorkflowApprovals'; diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.js b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.js index 6add5e7432..d43e5348ba 100644 --- a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.js +++ b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.js @@ -1,6 +1,6 @@ import { useState, useEffect } from 'react'; -import useWebsocket from 'util/useWebsocket'; -import useThrottle from 'util/useThrottle'; +import useWebsocket from 'hooks/useWebsocket'; +import useThrottle from 'hooks/useThrottle'; export default function useWsWorkflowApprovals( initialWorkflowApprovals, diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.js b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.js index 02adc78928..1bd7af42d6 100644 --- a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.js +++ b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.js @@ -25,7 +25,7 @@ describe('useWsWorkflowApprovals hook', () => { Jest mock timers don’t play well with jest-websocket-mock, so we'll stub out throttling to resolve immediately */ - jest.mock('../../../util/useThrottle', () => ({ + jest.mock('../../../hooks/useThrottle', () => ({ __esModule: true, default: jest.fn(val => val), })); From 954be5dd3252e6c62cbf29fbf9602f1ea99a13de Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Mon, 19 Jul 2021 13:26:20 -0400 Subject: [PATCH 7/7] Regenerate translation string files --- awx/ui_next/src/locales/en/messages.po | 9315 +++++++++++------------- awx/ui_next/src/locales/es/messages.po | 8417 ++++++++++----------- awx/ui_next/src/locales/fr/messages.po | 8401 ++++++++++----------- awx/ui_next/src/locales/ja/messages.po | 8378 ++++++++++----------- awx/ui_next/src/locales/nl/messages.po | 8404 ++++++++++----------- awx/ui_next/src/locales/zh/messages.po | 8387 ++++++++++----------- awx/ui_next/src/locales/zu/messages.po | 8642 ++++++++++------------ 7 files changed, 29452 insertions(+), 30492 deletions(-) diff --git a/awx/ui_next/src/locales/en/messages.po b/awx/ui_next/src/locales/en/messages.po index 5b3b4555c6..6982d87e61 100644 --- a/awx/ui_next/src/locales/en/messages.po +++ b/awx/ui_next/src/locales/en/messages.po @@ -13,119 +13,99 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/contexts/Network.jsx:52 -#~ msgid "404" -#~ msgstr "" - -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "(Limited to first 10)" -#: components/TemplateList/TemplateListItem.jsx:97 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:162 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "(Prompt on launch)" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:276 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* This field will be retrieved from an external secret management system using the specified credential." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -#~ msgid "- Enable Concurrent Jobs" -#~ msgstr "- Enable Concurrent Jobs" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -#~ msgid "- Enable Webhooks" -#~ msgstr "- Enable Webhooks" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "/ (project root)" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "0 (Normal)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "0 (Warning)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "1 (Info)" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:37 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:47 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "1 (Verbose)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "2 (Debug)" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:38 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:48 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:216 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "2 (More Verbose)" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:39 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:49 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:217 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "3 (Debug)" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:40 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:50 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:218 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "4 (Connection Debug)" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "5 (WinRM Debug)" -#: src/pages/Organizations/components/OrganizationBreadcrumb.jsx:60 -#~ msgid "> add" -#~ msgstr "" - -#: src/pages/Organizations/components/OrganizationBreadcrumb.jsx:53 -#~ msgid "> edit" -#~ msgstr "" - -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" @@ -135,284 +115,262 @@ msgstr "" "module). This parameter allows access to references via\n" "the branch field not otherwise available." -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." -#~ msgstr "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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." -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "ALL" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:231 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "API Service/Integration Key" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:288 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "API Token" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "API service/integration key" -#: src/components/BrandLogo/BrandLogo.jsx:71 -#~ msgid "AWX Logo" -#~ msgstr "" - -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "" -#: src/components/About.jsx:59 -#~ msgid "AboutModal Logo" -#~ msgstr "" - -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:66 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:136 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:76 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "Access Token Expiration" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:295 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:418 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "Account SID" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:391 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "Account token" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "Action" -#: components/JobList/JobList.jsx:221 -#: components/JobList/JobListItem.jsx:88 -#: components/Schedule/ScheduleList/ScheduleList.jsx:168 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:226 -#: components/TemplateList/TemplateListItem.jsx:177 -#: 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:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostGroups/HostGroupItem.jsx:34 -#: screens/Host/HostGroups/HostGroupsList.jsx:182 -#: screens/Host/HostList/HostList.jsx:168 -#: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:275 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 -#: screens/InstanceGroup/Instances/InstanceList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:153 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:146 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:137 -#: 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/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:87 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:17 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:164 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 -#: screens/Project/ProjectList/ProjectList.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:214 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "Actions" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:61 -#: components/TemplateList/TemplateListItem.jsx:256 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "Activity" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "Activity Stream" -#: screens/Setting/SettingList.jsx:105 -#~ msgid "Activity Stream settings" -#~ msgstr "Activity Stream settings" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "Activity Stream type selector" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "Actor" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedTable/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "Add Link" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "Add Node" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "Add Question" -#: components/AddRole/AddResourceRole.jsx:183 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "" -#: components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "" -#: components/AddRole/AddResourceRole.jsx:177 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "Add a new node" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 msgid "Add a new node between these two nodes" msgstr "Add a new node between these two nodes" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:187 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "Add container group" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "Add existing group" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "Add existing host" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:188 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "Add instance group" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "Add inventory" -#: components/TemplateList/TemplateList.jsx:136 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "Add job template" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "Add new group" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "Add new host" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "Add resource type" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "Add smart inventory" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "Add team permissions" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "Add user permissions" -#: components/TemplateList/TemplateList.jsx:137 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "Add workflow template" -#: src/screens/ActivityStream/ActivityStream.jsx:187 -#~ msgid "Adminisration" -#~ msgstr "Adminisration" - -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "" -#: src/pages/Organizations/components/OrganizationListItem.jsx:66 -#~ msgid "Admins" -#~ msgstr "" - -#: components/DataListToolbar/DataListToolbar.jsx:87 -#: screens/Job/JobOutput/JobOutput.jsx:764 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "Advanced" -#: components/Search/AdvancedSearch.jsx:353 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "Advanced search documentation" -#: components/Search/AdvancedSearch.jsx:335 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "Advanced search value input" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -424,55 +382,37 @@ msgstr "" "before executing job tasks. This is intended for static content,\n" "like the Ansible inventory .ini file format." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -#~ msgstr "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." - -#: components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "After number of occurrences" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:39 -#~ msgid "Agree to end user license agreement" -#~ msgstr "Agree to end user license agreement" - -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:20 -#~ msgid "Agree to the end user license agreement and click submit." -#~ msgstr "Agree to the end user license agreement and click submit." - -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "Alert modal" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "All" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "All job types" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "All jobs" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "Allow Branch Override" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -#~ msgid "Allow Provisioning Callbacks" -#~ msgstr "Allow Provisioning Callbacks" - -#: components/PromptDetail/PromptProjectDetail.jsx:66 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 msgid "Allow branch override" msgstr "Allow branch override" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." @@ -480,375 +420,333 @@ msgstr "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." -#~ msgstr "Allow changing the Source Control branch or revision in a job template that uses this project." - -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "Allowed URIs list, space separated" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "Always" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "Amazon EC2" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "An error occurred" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "An inventory must be selected" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:87 -#: src/components/PromptDetail/PromptProjectDetail.jsx:92 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:94 -#: src/screens/Organization/shared/OrganizationForm.jsx:82 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 -#: src/screens/Project/shared/ProjectForm.jsx:274 -#~ msgid "Ansible Environment" -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "Ansible Tower" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "Ansible Tower Documentation." -#: src/components/About/About.jsx:58 -#~ msgid "Ansible Version" -#~ msgstr "" - -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -#~ msgid "Ansible environment" -#~ msgstr "Ansible environment" - -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "Answer type" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "Answer variable name" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "Any" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "Application" -#: screens/User/Users.jsx:36 -#~ msgid "Application Name" -#~ msgstr "Application Name" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -#~ msgid "Application access token" -#~ msgstr "Application access token" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "Application information" -#: screens/User/UserTokenList/UserTokenList.jsx:117 -#: screens/User/UserTokenList/UserTokenList.jsx:128 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "Application name" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "Application not found." -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:118 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 #: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "Applications & Tokens" -#: src/components/AddRole/AddResourceRole.jsx:203 -#~ msgid "Apply roles" -#~ msgstr "" - -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "Approval" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "Approve" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "Approved" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "Approved - {0}. See the Activity Stream for more information." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "Approved by {0} - {1}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:123 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "April" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "Are you sure you want to cancel this job?" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -#~ msgid "Are you sure you want to delete the {0} below?" -#~ msgstr "Are you sure you want to delete the {0} below?" - -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "Are you sure you want to exit the Workflow Creator without saving your changes?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "Are you sure you want to remove all the nodes in this workflow?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "Are you sure you want to remove the node below:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "Are you sure you want to remove this link?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "Are you sure you want to remove this node?" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:911 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "Are you sure you want to submit the request to cancel this job?" -#: components/AdHocCommands/AdHocDetailsStep.jsx:101 -#: components/AdHocCommands/AdHocDetailsStep.jsx:103 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "Arguments" -#: screens/Job/JobDetail/JobDetail.jsx:352 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "Artifacts" -#: screens/InstanceGroup/Instances/InstanceList.jsx:187 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "Associate" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "Associate role error" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "Association modal" -#: components/LaunchPrompt/steps/SurveyStep.jsx:164 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "At least one value must be selected for this field." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:143 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "August" -#: screens/Setting/SettingList.jsx:50 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "" -#: src/pages/AuthSettings.jsx:19 -#~ msgid "Authentication Settings" -#~ msgstr "" - -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:89 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "Authorization Code Expiration" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "Authorization grant type" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:121 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "Auto" -#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "Azure AD" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "Azure AD settings" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:148 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "Back" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "Back to Credentials" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "Back to Dashboard." -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "Back to Groups" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "Back to Hosts" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:59 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "Back to Inventories" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "Back to Jobs" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "Back to Notifications" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "Back to Organizations" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "Back to Projects" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "Back to Schedules" -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:38 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "Back to Settings" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "Back to Sources" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "Back to Teams" -#: screens/Template/Template.jsx:129 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "Back to Templates" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "Back to Tokens" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "Back to Users" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "Back to Workflow Approvals" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "Back to applications" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "Back to credential types" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "Back to execution environments" -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "Back to instance groups" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "Back to management jobs" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -860,15 +758,11 @@ msgstr "" "Together the base path and selected playbook directory provide the full\n" "path used to locate playbooks." -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." -#~ msgstr "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:443 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "Basic auth password" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -880,175 +774,160 @@ msgstr "" "commit hashes and refs may not be available unless you also\n" "provide a custom refspec." -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." -#~ msgstr "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." - -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "Browse" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 -#~ 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/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "Browse…" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation 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." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:127 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" msgstr "CPU {0}" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:120 -#: components/PromptDetail/PromptProjectDetail.jsx:114 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:218 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "Cache Timeout" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:189 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "Cache timeout" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "Cache timeout (seconds)" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:149 -#: components/AddRole/AddResourceRole.jsx:287 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:129 -#: components/Lookup/HostFilterLookup.jsx:350 -#: components/Lookup/Lookup.jsx:186 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:281 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:630 -#: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:347 -#: screens/Credential/shared/CredentialForm.jsx:352 -#: 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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:105 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "Cancel Inventory Source Sync" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:887 -#: screens/Job/JobOutput/JobOutput.jsx:888 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "Cancel Job" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:262 -#: screens/Project/ProjectList/ProjectListItem.jsx:222 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "Cancel Project Sync" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:264 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "Cancel Sync" -#: screens/Job/JobOutput/JobOutput.jsx:895 -#: screens/Job/JobOutput/JobOutput.jsx:898 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "Cancel job" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "Cancel link changes" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "Cancel link removal" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "Cancel lookup" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "Cancel node removal" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "Cancel revert" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "Cancel selected job" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "Cancel selected jobs" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "Cancel subscription edit" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 -#~ msgid "Cancel sync" -#~ msgstr "Cancel sync" - -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 -#~ msgid "Cancel sync process" -#~ msgstr "Cancel sync process" - -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 -#~ msgid "Cancel sync source" -#~ msgstr "Cancel sync source" - -#: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:391 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "Cancel {0}" -#: components/JobList/JobList.jsx:206 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "Canceled" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:129 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." @@ -1056,53 +935,37 @@ msgstr "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." -#~ msgstr "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." - -#: src/pages/Organizations/Organizations.jsx:77 -#~ msgid "Cannot find organization with ID" -#~ msgstr "" - -#: src/contexts/Network.jsx:53 -#~ msgid "Cannot find resource." -#~ msgstr "" - -#: src/components/NotifyAndRedirect.jsx:23 -#~ msgid "Cannot find route {0}." -#~ msgstr "" - -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:274 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "Capacity" -#: screens/InstanceGroup/Instances/InstanceList.jsx:215 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:125 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 msgid "Capacity Adjustment" msgstr "Capacity Adjustment" -#: components/Search/AdvancedSearch.jsx:213 +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "Case-insensitive version of contains" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "Case-insensitive version of endswith." -#: components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "Case-insensitive version of exact." -#: components/Search/AdvancedSearch.jsx:249 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "Case-insensitive version of regex." -#: components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "Case-insensitive version of startswith." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." @@ -1110,74 +973,70 @@ msgstr "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." -#~ msgstr "Change PROJECTS_ROOT when deploying {brandName} to change this location." - -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "Changed" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "Changes" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:263 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "Channel" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:209 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "Check" -#: components/Search/AdvancedSearch.jsx:279 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "Check whether the given field or related object is null; expects a boolean value." -#: components/Search/AdvancedSearch.jsx:285 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr "Choose a .json file" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "Choose a Notification Type" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "Choose a Playbook Directory" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "Choose a Source Control Type" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "Choose a Webhook Service" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "Choose a job type" -#: components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "Choose a module" -#: screens/Inventory/shared/InventorySourceForm.jsx:148 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "Choose a source" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:486 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "Choose an HTTP method" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" @@ -1187,230 +1046,200 @@ msgstr "" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." -#: screens/Template/Survey/SurveyQuestionForm.jsx:37 -#~ msgid "" -#~ "Choose an answer type or format you want as the prompt for the user.\n" -#~ "Refer to the Documentation for more additional\n" -#~ "information about each option." -#~ msgstr "" -#~ "Choose an answer type or format you want as the prompt for the user.\n" -#~ "Refer to the Documentation for more additional\n" -#~ "information about each option." - -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." -#~ msgstr "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -#~ msgid "Choose an email option" -#~ msgstr "Choose an email option" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." -#: components/AddRole/AddResourceRole.jsx:193 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "Clean" -#: components/DataListToolbar/DataListToolbar.jsx:66 -#: screens/Job/JobOutput/JobOutput.jsx:808 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "Clear" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "Clear all filters" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "Clear subscription" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "Clear subscription selection" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "Click an available node to create a new link. Click outside the graph to cancel." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 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:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js: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." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "Click to create a new link to this node." -#: screens/Template/Survey/MultipleChoiceField.jsx:122 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "Click to toggle default value" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "Click to view job details" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "Client ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:236 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "Client Identifier" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:311 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "Client identifier" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "Client secret" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "Client type" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "Close subscription modal" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "Cloud" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "" -#: components/AdHocCommands/AdHocPreviewStep.jsx:8 -#: components/JobList/JobList.jsx:186 -#: components/JobList/JobListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "Command" -#: src/screens/Host/Host.jsx:67 -#: src/screens/Host/Hosts.jsx:32 -#: src/screens/Inventory/Inventory.jsx:68 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: src/screens/Template/Template.jsx:151 -#: src/screens/Template/Templates.jsx:48 -#: src/screens/Template/WorkflowJobTemplate.jsx:145 -#~ msgid "Completed Jobs" -#~ msgstr "Completed Jobs" - -#: src/screens/Inventory/Inventories.jsx:59 -#: src/screens/Inventory/Inventories.jsx:73 -#: src/screens/Inventory/SmartInventory.jsx:73 -#~ msgid "Completed jobs" -#~ msgstr "Completed jobs" - -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "Compliant" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:75 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:36 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:138 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -#: screens/Template/shared/JobTemplateForm.jsx:605 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "Concurrent Jobs" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "Confirm" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "Confirm Delete" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:193 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "Confirm Disable Local Authorization" -#: screens/User/shared/UserForm.jsx:88 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "Confirm Password" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "Confirm cancel job" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "Confirm cancellation" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "Confirm delete" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "Confirm disassociate" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "Confirm link removal" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "Confirm node removal" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "Confirm removal of all nodes" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "Confirm revert all" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "Confirm selection" -#: screens/Job/JobDetail/JobDetail.jsx:238 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "Container Group" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "Container group" -#: screens/InstanceGroup/ContainerGroup.jsx:93 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "Container group not found." -#: components/LaunchPrompt/LaunchPrompt.jsx:123 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "Content Loading" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "Continue" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." @@ -1418,11 +1247,7 @@ msgstr "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -#~ msgid "Control the level of output Ansible will produce for inventory source update jobs." -#~ msgstr "Control the level of output Ansible will produce for inventory source update jobs." - -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1430,7 +1255,7 @@ msgstr "" "Control the level of output ansible\n" "will produce as the playbook executes." -#: screens/Template/shared/JobTemplateForm.jsx:468 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." @@ -1438,299 +1263,266 @@ msgstr "" "Control the level of output ansible will\n" "produce as the playbook executes." -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 -#: src/screens/Template/shared/JobTemplateForm.jsx:414 -#~ msgid "Control the level of output ansible will produce as the playbook executes." -#~ msgstr "Control the level of output ansible will produce as the playbook executes." - -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 -#~ msgid "Controller" -#~ msgstr "Controller" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "Convergence" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "Convergence select" -#: components/CopyButton/CopyButton.jsx:38 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "Copy" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "Copy Credential" -#: components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "Copy Error" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "Copy Execution Environment" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "Copy Inventory" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "Copy Notification Template" -#: screens/Project/ProjectList/ProjectListItem.jsx:254 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "Copy Project" -#: components/TemplateList/TemplateListItem.jsx:230 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "Copy Template" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:185 -#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "Copy full revision to clipboard." -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "Copyright" -#: src/components/About.jsx:55 -#~ msgid "Copyright 2018 Red Hat, Inc." -#~ msgstr "" - -#: components/About/About.jsx:35 -#~ msgid "Copyright 2019 Red Hat, Inc." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:409 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "Create" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 -#~ msgid "Create Execution environments" -#~ msgstr "Create Execution environments" - -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "Create New Application" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "Create New Credential" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "Create New Host" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "Create New Job Template" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "Create New Notification Template" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "Create New Project" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "Create New Schedule" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "Create New Team" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "Create New User" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "Create New Workflow Template" -#: screens/Host/HostList/SmartInventoryButton.jsx:18 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "Create a new Smart Inventory with the applied filter" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#~ msgid "Create container group" -#~ msgstr "Create container group" - -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:28 -#~ msgid "Create instance group" -#~ msgstr "Create instance group" - -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "Create new container group" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "Create new credential Type" -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "Create new credential type" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "Create new execution environment" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "Create new group" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "Create new host" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "Create new instance group" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "Create new inventory" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "Create new smart inventory" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "Create new source" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "Create user token" -#: components/Lookup/ApplicationLookup.jsx:115 -#: components/PromptDetail/PromptDetail.jsx:130 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:248 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:144 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:215 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 -#: screens/Job/JobDetail/JobDetail.jsx:328 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:335 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:233 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:140 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:56 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:89 -#: components/Lookup/CredentialLookup.jsx:191 -#: components/Lookup/InventoryLookup.jsx:138 -#: components/Lookup/InventoryLookup.jsx:194 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:211 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:135 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:104 -#: screens/Host/HostGroups/HostGroupsList.jsx:169 -#: screens/Host/HostList/HostList.jsx:154 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:133 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:126 -#: screens/Inventory/InventoryList/InventoryList.jsx:176 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:96 -#: screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:131 -#: screens/Project/ProjectList/ProjectList.jsx:197 -#: screens/Team/TeamList/TeamList.jsx:135 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "Created By (Username)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:79 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:166 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "Created by (username)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:126 -#: 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:54 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 -#: 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/InsightsSubForm.jsx:43 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 #: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "Credential" @@ -1739,338 +1531,313 @@ msgstr "Credential" msgid "Credential Input Sources" msgstr "Credential Input Sources" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "Credential Name" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:231 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "Credential Type" -#: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:187 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:124 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 -#: screens/CredentialType/CredentialTypes.jsx:13 -#: screens/CredentialType/CredentialTypes.jsx:22 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "Credential not found." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "Credential passwords" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." -#~ msgstr "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." - -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 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:170 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "Credential to authenticate with a protected container registry." -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." msgstr "Credential type not found." -#: components/JobList/JobListItem.jsx:215 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:193 -#: components/LaunchPrompt/steps/useCredentialsStep.jsx:62 -#: components/Lookup/MultiCredentialsLookup.jsx:139 -#: components/Lookup/MultiCredentialsLookup.jsx:211 -#: components/PromptDetail/PromptDetail.jsx:158 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:193 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: components/TemplateList/TemplateListItem.jsx:314 +#: components/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:176 -#: screens/Credential/Credentials.jsx:13 -#: screens/Credential/Credentials.jsx:23 -#: screens/Job/JobDetail/JobDetail.jsx:266 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 #: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:53 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:83 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "Custom pod spec" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:66 -#: screens/Project/ProjectList/ProjectListItem.jsx:188 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "Custom virtual environment {0} must be replaced by an execution environment." -#: components/TemplateList/TemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:155 msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." msgstr "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:55 -#~ msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -#~ msgstr "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:71 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." msgstr "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "Customize messages…" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:69 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "Customize pod specification" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "DELETED" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "Dashboard (all activity)" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "Data retention period" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:337 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:441 -#: components/Schedule/shared/ScheduleForm.jsx:145 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "Day" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 msgid "Days of Data to Keep" msgstr "Days of Data to Keep" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:108 msgid "Days remaining" msgstr "Days remaining" -#: screens/Job/JobOutput/JobOutput.jsx:756 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "Debug" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:163 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "December" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "Default" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:39 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:209 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "Default Execution Environment" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "Default answer" -#: screens/Template/Survey/SurveyQuestionForm.jsx:85 -#~ msgid "Default choice must be answered from the choices listed." -#~ msgstr "Default choice must be answered from the choices listed." - -#: screens/Setting/SettingList.jsx:97 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "Define system-level features and functions" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:158 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:235 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:246 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:250 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:299 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:117 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 -#: 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:403 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:372 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:178 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:281 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:410 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:252 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "Delete All Groups and Hosts" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:293 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "Delete Credential" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "Delete Execution Environment" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -#~ msgid "Delete Group?" -#~ msgstr "Delete Group?" - -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -#~ msgid "Delete Groups?" -#~ msgstr "Delete Groups?" - -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "Delete Host" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "Delete Inventory" -#: screens/Job/JobDetail/JobDetail.jsx:399 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "Delete Job" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:404 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "Delete Job Template" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "Delete Notification" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:172 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "Delete Organization" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:275 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "Delete Project" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "Delete Questions" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "Delete Schedule" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "Delete Survey" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "Delete Team" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "Delete User" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "Delete User Token" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "Delete Workflow Approval" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "Delete Workflow Job Template" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "Delete all nodes" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "Delete application" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "Delete credential type" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "Delete error" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "Delete instance group" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "Delete inventory source" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:83 -#~ msgid "Delete on Update" -#~ msgstr "Delete on Update" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "Delete smart inventory" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -2082,330 +1849,314 @@ msgstr "" "repository this may significantly increase the amount\n" "of time required to complete an update." -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." -#~ msgstr "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." - -#: components/PromptDetail/PromptProjectDetail.jsx:51 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:92 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 msgid "Delete the project before syncing" msgstr "Delete the project before syncing" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "Delete this link" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "Delete this node" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:132 -#~ msgid "Delete {0}" -#~ msgstr "" - -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:131 -#~ msgid "Delete {itemName}" -#~ msgstr "" - -#: components/PaginatedTable/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "Delete {pluralizedItemName}?" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "Deleted" -#: components/TemplateList/TemplateList.jsx:271 -#: screens/Credential/CredentialList/CredentialList.jsx:192 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:269 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "Deletion Error" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:294 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "Deletion error" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "Denied" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "Denied - {0}. See the Activity Stream for more information." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "Denied by {0} - {1}" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "Deny" -#: screens/Job/JobOutput/JobOutput.jsx:758 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "Deprecated" -#: components/HostForm/HostForm.jsx:104 -#: 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:190 -#: components/Schedule/shared/ScheduleForm.jsx:104 -#: components/TemplateList/TemplateList.jsx:195 -#: components/TemplateList/TemplateListItem.jsx:250 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:128 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:213 -#: screens/Credential/CredentialList/CredentialList.jsx:131 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:134 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:152 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:150 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:172 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:155 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:45 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:117 -#: screens/Inventory/shared/SmartInventoryForm.jsx:60 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:71 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:101 -#: screens/Organization/OrganizationList/OrganizationList.jsx:134 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:160 -#: screens/Project/ProjectList/ProjectList.jsx:174 -#: screens/Project/ProjectList/ProjectListItem.jsx:273 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:127 -#: screens/Team/shared/TeamForm.jsx:37 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: 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:249 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:115 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:188 -#: screens/User/UserTeams/UserTeamListItem.jsx:32 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/shared/UserTokenForm.jsx:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:271 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "Destination Channels" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:181 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "Destination Channels or Users" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:290 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "Destination SMS Number(s)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:408 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "Destination SMS number(s)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:359 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "Destination channels" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:226 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "Destination channels or users" -#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 -#~ msgid "Detail coming soon :)" -#~ msgstr "Detail coming soon :)" - -#: components/AdHocCommands/AdHocCommandsWizard.jsx:62 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:72 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:75 -#: screens/InstanceGroup/InstanceGroup.jsx:76 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:65 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:45 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:83 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:44 -#: screens/Setting/Settings.jsx:47 -#: screens/Setting/Settings.jsx:51 -#: screens/Setting/Settings.jsx:54 -#: screens/Setting/Settings.jsx:57 -#: screens/Setting/Settings.jsx:60 -#: screens/Setting/Settings.jsx:63 -#: screens/Setting/Settings.jsx:66 -#: screens/Setting/Settings.jsx:69 -#: screens/Setting/Settings.jsx:72 -#: screens/Setting/Settings.jsx:81 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:94 -#: screens/Setting/Settings.jsx:97 -#: screens/Setting/Settings.jsx:100 -#: screens/Setting/Settings.jsx:103 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Settings.jsx:109 -#: screens/Setting/Settings.jsx:112 -#: screens/Setting/Settings.jsx:115 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:135 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:36 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "Details tab" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:157 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:215 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:260 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:314 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "Disable SSL Verification" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:184 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:237 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "Disable SSL verification" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "Disassociate" -#: screens/Host/HostGroups/HostGroupsList.jsx:217 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "Disassociate group from host?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "Disassociate host from group?" -#: screens/InstanceGroup/Instances/InstanceList.jsx:196 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "Disassociate instance from instance group?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "Disassociate related group(s)?" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "Disassociate related team(s)?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "Disassociate role" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "Disassociate role!" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "Disassociate?" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:87 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 msgid "Discard local changes before syncing" msgstr "Discard local changes before syncing" -#: screens/Template/shared/JobTemplateForm.jsx:483 +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" @@ -2415,39 +2166,52 @@ msgstr "" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." -#~ msgstr "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." - -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "Documentation." -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "Done" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "Download Output" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "Drag a file here or browse to upload" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "Draggable list to reorder and remove selected items." + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "Dragging cancelled. List is unchanged." + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "Dragging started for item id: {newId}." + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "E-mail" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "E-mail options" -#: screens/Template/Survey/SurveyQuestionForm.jsx:220 -#~ msgid "Each answer choice must be on a separate line." -#~ msgstr "Each answer choice must be on a separate line." - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" @@ -2457,12 +2221,7 @@ msgstr "" "refresh the inventory from the selected source before\n" "executing job tasks." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." -#~ msgstr "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." - -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." @@ -2470,370 +2229,341 @@ msgstr "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -#~ msgstr "Each time a job runs using this project, update the revision of the project prior to starting the job." - -#: 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:286 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:230 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:120 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:359 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:361 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:161 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:254 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:79 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:83 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:114 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:174 -#: 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:379 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:222 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:224 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 -#: screens/User/UserDetail/UserDetail.jsx:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "Edit Credential" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "Edit Credential Plugin Configuration" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/Settings.jsx:116 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "Edit Execution Environment" -#: screens/Host/HostGroups/HostGroupItem.jsx:37 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "Edit Group" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "Edit Host" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "Edit Inventory" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "Edit Link" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "Edit Node" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "Edit Notification Template" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "Edit Organization" -#: screens/Project/ProjectList/ProjectListItem.jsx:240 -#: screens/Project/ProjectList/ProjectListItem.jsx:245 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "Edit Project" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "Edit Question" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "Edit Schedule" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:124 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "Edit Source" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:20 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:24 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "Edit Survey" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "Edit Team" -#: components/TemplateList/TemplateListItem.jsx:215 -#: components/TemplateList/TemplateListItem.jsx:221 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:100 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "Edit Template" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "Edit User" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "Edit application" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "Edit credential type" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "Edit details" -#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 -#~ msgid "Edit form coming soon :)" -#~ msgstr "Edit form coming soon :)" - -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "Edit group" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "Edit host" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "Edit instance group" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "Edit this link" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "Edit this node" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:84 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 msgid "Edit workflow" msgstr "Edit workflow" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "Elapsed" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "Elapsed Time" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 msgid "Elapsed time that the job ran" msgstr "Elapsed time that the job ran" -#: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:72 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "Email" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" msgstr "Email Options" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:245 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "Enable Concurrent Jobs" -#: screens/Template/shared/JobTemplateForm.jsx:612 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "Enable Fact Storage" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:192 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "Enable HTTPS certificate verification" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -#~ msgid "Enable Privilege Escalation" -#~ msgstr "Enable Privilege Escalation" - -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/JobTemplateForm.jsx:589 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:228 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "Enable Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "Enable Webhook for this workflow job template." -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#~ msgid "Enable Webhooks" -#~ msgstr "Enable Webhooks" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:136 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "Enable external logging" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:168 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "Enable log system tracking facts individually" -#: components/AdHocCommands/AdHocDetailsStep.jsx:219 -#: components/AdHocCommands/AdHocDetailsStep.jsx:222 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "Enable privilege escalation" -#: screens/Setting/SettingList.jsx:51 +#: screens/Setting/SettingList.js:52 msgid "Enable simplified login for your {0} applications" msgstr "Enable simplified login for your {0} applications" -#: screens/Setting/SettingList.jsx:56 -#~ msgid "Enable simplified login for your {brandName} applications" -#~ msgstr "Enable simplified login for your {brandName} applications" - -#: screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "Enable webhook for this template." -#: components/Lookup/HostFilterLookup.jsx:96 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "Enabled" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:184 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:189 -#: components/PromptDetail/PromptProjectDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:243 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 msgid "Enabled Options" msgstr "Enabled Options" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "Enabled Value" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:193 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "Enabled Variable" -#: screens/Template/shared/JobTemplateForm.jsx:547 -#~ msgid "" -#~ "Enables creation of a provisioning\n" -#~ "callback URL. Using the URL a host can contact BRAND_NAME\n" -#~ "and request a configuration update using this job\n" -#~ "template." -#~ msgstr "" -#~ "Enables creation of a provisioning\n" -#~ "callback URL. Using the URL a host can contact BRAND_NAME\n" -#~ "and request a configuration update using this job\n" -#~ "template." - -#: screens/Template/shared/JobTemplateForm.jsx:572 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {0}\n" @@ -2845,19 +2575,7 @@ msgstr "" "and request a configuration update using this job\n" "template." -#: screens/Template/shared/JobTemplateForm.jsx:569 -#~ msgid "" -#~ "Enables creation of a provisioning\n" -#~ "callback URL. Using the URL a host can contact {BrandName}\n" -#~ "and request a configuration update using this job\n" -#~ "template." -#~ msgstr "" -#~ "Enables creation of a provisioning\n" -#~ "callback URL. Using the URL a host can contact {BrandName}\n" -#~ "and request a configuration update using this job\n" -#~ "template." - -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" @@ -2869,61 +2587,41 @@ msgstr "" "and request a configuration update using this job\n" "template" -#: src/screens/Template/shared/JobTemplateForm.jsx:517 -#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." -#~ msgstr "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." - -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -#~ msgstr "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" - -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:152 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "Encrypted" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:488 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:540 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "End" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "End User License Agreement" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -#~ msgid "End date/time" -#~ msgstr "End date/time" - #: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "End did not match an expected value" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "End user license agreement" -#: screens/Host/HostList/SmartInventoryButton.jsx:15 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "Enter at least one search filter to create a new Smart Inventory" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 -#~ msgid "Enter injectors using either JSON or YAML syntax. Refer to the documentation for example syntax." -#~ msgstr "Enter injectors using either JSON or YAML syntax. Refer to the documentation for example syntax." - -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 -#~ msgid "Enter inputs using either JSON or YAML syntax. Refer to the documentation for example syntax." -#~ msgstr "Enter inputs using either JSON or YAML syntax. Refer to the documentation for example syntax." - -#: screens/Inventory/shared/SmartInventoryForm.jsx:99 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" @@ -2933,33 +2631,15 @@ msgstr "" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." -#: screens/Inventory/shared/SmartInventoryForm.jsx:100 -#~ msgid "" -#~ "Enter inventory variables using either JSON or YAML syntax.\n" -#~ "Use the radio button to toggle between the two. Refer to the\n" -#~ "documentation for example syntax." -#~ msgstr "" -#~ "Enter inventory variables using either JSON or YAML syntax.\n" -#~ "Use the radio button to toggle between the two. Refer to the\n" -#~ "documentation for example syntax." - -#: screens/Inventory/shared/InventoryForm.jsx:70 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -#~ msgstr "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." - -#: screens/Inventory/shared/InventoryForm.jsx:85 -#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the 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 documentation for example syntax" - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:180 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "Enter one Annotation Tag per line, without commas." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" @@ -2969,11 +2649,7 @@ msgstr "" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." -#~ msgstr "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:364 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." @@ -2981,11 +2657,7 @@ msgstr "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." -#~ msgstr "Enter one Slack channel per line. The pound symbol (#) is required for channels." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:89 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." @@ -2993,11 +2665,7 @@ msgstr "" "Enter one email address per line to create a recipient\n" "list for this type of notification." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -#~ msgid "Enter one email address per line to create a recipient list for this type of notification." -#~ msgstr "Enter one email address per line to create a recipient list for this type of notification." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:413 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." @@ -3005,11 +2673,7 @@ msgstr "" "Enter one phone number per line to specify where to\n" "route SMS messages." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -#~ msgid "Enter one phone number per line to specify where to route SMS messages." -#~ msgstr "Enter one phone number per line to specify where to route SMS messages." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:403 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." @@ -3017,840 +2681,812 @@ msgstr "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -#~ msgstr "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." - -#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights 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>Insights plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory 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." -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." -#: src/screens/Job/JobDetail/JobDetail.jsx:224 -#~ msgid "Environment" -#~ msgstr "Environment" - -#: components/JobList/JobList.jsx:205 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:125 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:297 -#: screens/Job/JobOutput/JobOutput.jsx:761 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "Error" -#: screens/Project/ProjectList/ProjectList.jsx:281 +#: screens/Project/ProjectList/ProjectList.js:289 msgid "Error fetching updated project" msgstr "Error fetching updated project" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:435 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "Error message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:444 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "Error message body" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "Error saving the workflow!" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:49 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:280 -#: components/JobList/JobList.jsx:291 -#: components/LaunchButton/LaunchButton.jsx:161 -#: components/LaunchPrompt/LaunchPrompt.jsx:66 -#: components/NotificationList/NotificationList.jsx:246 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:205 -#: components/ResourceAccessList/ResourceAccessList.jsx:234 -#: components/ResourceAccessList/ResourceAccessList.jsx:246 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:236 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:274 -#: contexts/Config.jsx:90 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:160 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:307 -#: screens/Credential/CredentialList/CredentialList.jsx:195 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Host/HostList/HostList.jsx:224 -#: screens/InstanceGroup/Instances/InstanceList.jsx:248 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:168 -#: 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:119 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:262 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: 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:380 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:187 -#: screens/Organization/OrganizationList/OrganizationList.jsx:203 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:289 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:184 -#: screens/Project/ProjectList/ProjectList.jsx:270 -#: screens/Project/ProjectList/ProjectList.jsx:282 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:198 -#: screens/Team/TeamRoles/TeamRolesList.jsx:248 -#: screens/Team/TeamRoles/TeamRolesList.jsx:259 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:419 -#: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:260 -#: 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:246 -#: screens/User/UserRoles/UserRolesList.jsx:257 -#: screens/User/UserTeams/UserTeamList.jsx:266 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: screens/User/UserTokenList/UserTokenList.jsx:203 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "Error!" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "Error:" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:728 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "Event" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "Event detail" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "Event detail modal" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "Event summary not available" -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "Events" -#: components/Search/AdvancedSearch.jsx:194 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "Exact match (default lookup if not specified)." -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:165 msgid "Exact search on id field." msgstr "Exact search on id field." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "Example URLs for GIT Source Control include:" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "Example URLs for Remote Archive Source Control include:" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "Example URLs for Subversion Source Control include:" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "Examples include:" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:114 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "Examples:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "Execute regardless of the parent node's final state." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "Execute when the parent node results in a failure state." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "Execute when the parent node results in a successful state." -#: components/AdHocCommands/AdHocCommandsWizard.jsx:86 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:40 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:103 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:189 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:211 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "Execution Environment" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:68 -#: components/TemplateList/TemplateListItem.jsx:151 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 msgid "Execution Environment Missing" msgstr "Execution Environment Missing" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:158 -#: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:208 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:122 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 -#: screens/Organization/Organization.jsx:127 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:80 -#: screens/Organization/Organizations.jsx:34 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 #: util/getRelatedResourceDeleteDetails.js:80 #: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "Execution Environments" -#: screens/Job/JobDetail/JobDetail.jsx:229 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "Execution Node" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -#~ msgid "Execution environment image" -#~ msgstr "Execution environment image" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:109 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "Execution environment is missing or deleted." -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -#~ msgid "Execution environment name" -#~ msgstr "Execution environment name" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "Execution environment not found." -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 -#~ msgid "Execution environments" -#~ msgstr "Execution environments" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "Exit Without Saving" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "Expand all rows" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "Expand input" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "Expected at least one of client_email, project_id or private_key to be present in the file." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -#~ msgid "Expiration" -#~ msgstr "Expiration" - -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:142 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:32 -#: 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:136 -#: screens/User/UserTokenList/UserTokenList.jsx:179 -#: screens/User/UserTokenList/UserTokenListItem.jsx:28 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "Expires" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "Expires on" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "Expires on UTC" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "Expires on {0}" -#: components/JobList/JobListItem.jsx:243 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "Explanation" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "External Secret Management System" -#: components/AdHocCommands/AdHocDetailsStep.jsx:290 -#: components/AdHocCommands/AdHocDetailsStep.jsx:291 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "Extra variables" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:125 -#: screens/Project/ProjectList/ProjectListItem.jsx:77 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "FINISHED:" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:80 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:143 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 msgid "Fact Storage" msgstr "Fact Storage" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "Facts" -#: components/JobList/JobList.jsx:204 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "Failed" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "Failed Host Count" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "Failed Hosts" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "Failed hosts" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "Failed jobs" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "Failed to approve one or more workflow approval." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "Failed to approve workflow approval." -#: components/ResourceAccessList/ResourceAccessList.jsx:238 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "Failed to assign roles properly" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js:249 msgid "Failed to associate role" msgstr "Failed to associate role" -#: screens/Host/HostGroups/HostGroupsList.jsx:254 -#: screens/InstanceGroup/Instances/InstanceList.jsx:252 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "Failed to associate." -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "Failed to cancel Inventory Source Sync" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:263 -#: screens/Project/ProjectList/ProjectListItem.jsx:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "Failed to cancel Project Sync" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 -#~ msgid "Failed to cancel inventory source sync." -#~ msgstr "Failed to cancel inventory source sync." - -#: components/JobList/JobList.jsx:294 +#: components/JobList/JobList.js:302 msgid "Failed to cancel one or more jobs." msgstr "Failed to cancel one or more jobs." -#: components/JobList/JobListItem.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:392 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "Failed to cancel {0}" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "Failed to copy credential." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "Failed to copy execution environment" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "Failed to copy inventory." -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "Failed to copy project." -#: components/TemplateList/TemplateListItem.jsx:235 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "Failed to copy template." -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "Failed to delete application." -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:310 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "Failed to delete credential." -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "Failed to delete group {0}." -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "Failed to delete host." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "Failed to delete inventory source {name}." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "Failed to delete inventory." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:422 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "Failed to delete job template." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:383 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "Failed to delete notification." -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 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.js:212 msgid "Failed to delete one or more credential types." msgstr "Failed to delete one or more credential types." -#: screens/Credential/CredentialList/CredentialList.jsx:198 +#: screens/Credential/CredentialList/CredentialList.js:197 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.js:225 msgid "Failed to delete one or more execution environments" msgstr "Failed to delete one or more execution environments" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "Failed to delete one or more groups." -#: screens/Host/HostList/HostList.jsx:227 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:197 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 msgid "Failed to delete one or more hosts." msgstr "Failed to delete one or more hosts." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:300 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 msgid "Failed to delete one or more instance groups." msgstr "Failed to delete one or more instance groups." -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 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.js:260 msgid "Failed to delete one or more inventory sources." msgstr "Failed to delete one or more inventory sources." -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:187 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 msgid "Failed to delete one or more job templates." msgstr "Failed to delete one or more job templates." -#: components/JobList/JobList.jsx:283 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "Failed to delete one or more jobs." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 msgid "Failed to delete one or more notification template." msgstr "Failed to delete one or more notification template." -#: screens/Organization/OrganizationList/OrganizationList.jsx:206 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "Failed to delete one or more organizations." -#: screens/Project/ProjectList/ProjectList.jsx:273 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "Failed to delete one or more projects." -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "Failed to delete one or more schedules." -#: screens/Team/TeamList/TeamList.jsx:201 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "Failed to delete one or more teams." -#: components/TemplateList/TemplateList.jsx:277 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "Failed to delete one or more templates." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:163 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "Failed to delete one or more tokens." -#: screens/User/UserTokenList/UserTokenList.jsx:206 +#: screens/User/UserTokenList/UserTokenList.js:205 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.js:193 msgid "Failed to delete one or more users." msgstr "Failed to delete one or more users." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "Failed to delete one or more workflow approval." -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:190 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "Failed to delete organization." -#: screens/Project/ProjectDetail/ProjectDetail.jsx:292 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "Failed to delete project." -#: components/ResourceAccessList/ResourceAccessList.jsx:249 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "Failed to delete role" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "Failed to delete role." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "Failed to delete schedule." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "Failed to delete smart inventory." -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "Failed to delete team." -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "Failed to delete user." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "Failed to delete workflow approval." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:263 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "Failed to delete workflow job template." -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "Failed to delete {name}." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "Failed to deny one or more workflow approval." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 msgid "Failed to deny workflow approval." msgstr "Failed to deny workflow approval." -#: screens/Host/HostGroups/HostGroupsList.jsx:255 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "Failed to disassociate one or more groups." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "Failed to disassociate one or more hosts." -#: screens/InstanceGroup/Instances/InstanceList.jsx:253 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "Failed to disassociate one or more instances." -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "Failed to disassociate one or more teams." -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "Failed to fetch custom login configuration settings. System defaults will be shown instead." -#: screens/Project/ProjectList/ProjectList.jsx:285 +#: screens/Project/ProjectList/ProjectList.js:293 msgid "Failed to fetch the updated project data." msgstr "Failed to fetch the updated project data." -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:164 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "Failed to launch job." -#: contexts/Config.jsx:94 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "Failed to retrieve configuration." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "Failed to retrieve full node resource object." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "Failed to retrieve node credentials." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "Failed to send test notification." -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "Failed to sync inventory source." -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "Failed to sync project." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 msgid "Failed to sync some or all inventory sources." msgstr "Failed to sync some or all inventory sources." -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "Failed to toggle host." -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "Failed to toggle instance." -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "Failed to toggle notification." -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "Failed to toggle schedule." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:172 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "Failed to update capacity adjustment." -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "Failed to update survey." -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "Failed to user token." -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:158 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:187 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:217 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:262 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:316 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "False" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:113 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "February" -#: components/Search/AdvancedSearch.jsx:207 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "Field contains value." -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "Field ends with value." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Field for passing a custom Kubernetes or OpenShift Pod specification." -#: components/Search/AdvancedSearch.jsx:243 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "Field matches the given regular expression." -#: components/Search/AdvancedSearch.jsx:219 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "Field starts with value." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:397 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "Fifth" -#: screens/Job/JobOutput/JobOutput.jsx:745 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "File Difference" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "File upload rejected. Please select a single .json file." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "File, directory or script" -#: components/JobList/JobList.jsx:220 -#: components/JobList/JobListItem.jsx:85 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "Finish Time" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "Finished" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:385 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "" -#: components/AddRole/AddResourceRole.jsx:27 -#: components/AddRole/AddResourceRole.jsx:41 -#: components/ResourceAccessList/ResourceAccessList.jsx:135 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:125 -#: screens/User/UserList/UserList.jsx:163 -#: screens/User/UserList/UserListItem.jsx:53 -#: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:101 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "First Name" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "First Run" -#: components/ResourceAccessList/ResourceAccessList.jsx:184 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "First name" -#: components/Search/AdvancedSearch.jsx:337 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "First, select a key" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "Fit the graph to the available screen size" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "Float" -#: screens/Job/JobOutput/JobOutput.jsx:829 +#: screens/Job/JobOutput/JobOutput.js:843 msgid "Follow" msgstr "Follow" -#: screens/Template/shared/JobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3862,7 +3498,7 @@ msgstr "" "test environment setup, and report problems without\n" "executing the playbook." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3872,442 +3508,429 @@ msgstr "" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:216 -#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -#~ msgstr "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." - -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "For more information, refer to the" -#: components/AdHocCommands/AdHocDetailsStep.jsx:179 -#: components/AdHocCommands/AdHocDetailsStep.jsx:180 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:154 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 -#: screens/Template/shared/JobTemplateForm.jsx:428 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "Forks" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "Fourth" -#: components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "Frequency Details" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 #: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "Frequency did not match an expected value" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:293 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "Fri" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:298 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:434 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "Friday" -#: components/Search/AdvancedSearch.jsx:168 +#: components/Search/AdvancedSearch.js:172 msgid "Fuzzy search on id, name or description fields." msgstr "Fuzzy search on id, name or description fields." -#: components/Search/AdvancedSearch.jsx:155 +#: components/Search/AdvancedSearch.js:159 msgid "Fuzzy search on name field." msgstr "Fuzzy search on name field." -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:140 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "Galaxy Credentials" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy credentials must be owned by an Organization." -#: screens/Job/JobOutput/JobOutput.jsx:753 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "Gathering Facts" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "Get subscription" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "Get subscriptions" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:182 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "Git" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:248 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:50 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "GitHub Default" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:59 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:62 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:65 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "GitHub Enterprise Team" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:53 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "GitHub Organization" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:56 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "GitHub Team" -#: screens/Setting/SettingList.jsx:59 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "GitHub settings" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:248 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:206 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "Global Default Execution Environment" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "Globally Available" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "Globally available execution environment can not be reassigned to a specific Organization" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: screens/Setting/SettingList.jsx:63 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "Google OAuth 2 settings" -#: screens/Setting/Settings.jsx:68 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "Google OAuth2" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "Grafana" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:157 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "Grafana API key" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:255 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "Greater than comparison." -#: components/Search/AdvancedSearch.jsx:261 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "Greater than or equal to comparison." -#: components/Lookup/HostFilterLookup.jsx:88 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "Group" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "Group details" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:124 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "Group type" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:237 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 #: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "Groups" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:326 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:463 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "HTTP Headers" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:321 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:477 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "HTTP Method" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "Hide" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "Hide description" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "Hipchat" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:105 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:75 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "Host" -#: screens/Job/JobOutput/JobOutput.jsx:740 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "Host Async Failure" -#: screens/Job/JobOutput/JobOutput.jsx:739 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "Host Async OK" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:161 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:238 -#: screens/Template/shared/JobTemplateForm.jsx:645 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "Host Config Key" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "Host Count" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "Host Details" -#: screens/Job/JobOutput/JobOutput.jsx:731 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "Host Failed" -#: screens/Job/JobOutput/JobOutput.jsx:734 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "Host Failure" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "Host Filter" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "Host Name" -#: screens/Job/JobOutput/JobOutput.jsx:733 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "Host OK" -#: screens/Job/JobOutput/JobOutput.jsx:738 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "Host Polling" -#: screens/Job/JobOutput/JobOutput.jsx:744 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "Host Retry" -#: screens/Job/JobOutput/JobOutput.jsx:735 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "Host Skipped" -#: screens/Job/JobOutput/JobOutput.jsx:732 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "Host Started" -#: screens/Job/JobOutput/JobOutput.jsx:736 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "Host Unreachable" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "Host details" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "Host details modal" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "Host not found." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 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:171 -#: screens/Dashboard/Dashboard.jsx:81 -#: screens/Host/HostList/HostList.jsx:140 -#: screens/Host/HostList/HostList.jsx:186 -#: screens/Host/Hosts.jsx:15 -#: screens/Host/Hosts.jsx:24 -#: screens/Inventory/Inventories.jsx:63 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:110 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:165 -#: screens/Inventory/SmartInventory.jsx:67 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:69 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 #: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "Hosts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 msgid "Hosts automated" msgstr "Hosts automated" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "Hosts available" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 msgid "Hosts imported" msgstr "Hosts imported" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "Hosts remaining" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -#~ msgid "Hosts used" -#~ msgstr "Hosts used" - -#: components/Schedule/shared/ScheduleForm.jsx:144 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "Hour" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:40 -#~ msgid "I agree to the End User License Agreement" -#~ msgstr "I agree to the End User License Agreement" - -#: components/JobList/JobList.jsx:172 -#: components/Lookup/HostFilterLookup.jsx:84 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "ID of the Dashboard" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "ID of the Panel" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "ID of the dashboard (optional)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "ID of the panel (optional)" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "IRC Nick" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "IRC Server Address" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "IRC Server Port" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:218 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "IRC nick" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:210 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "IRC server address" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:196 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "IRC server password" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:201 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "IRC server port" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:210 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:269 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:340 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "Icon URL" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" @@ -4317,31 +3940,7 @@ msgstr "" "and hosts will be removed and replaced by those found\n" "on the external source." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." -#~ msgstr "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 -#~ msgid "" -#~ "If checked, any hosts and groups that were\n" -#~ "previously present on the external source but are now removed\n" -#~ "will be removed from the Tower inventory. Hosts and groups\n" -#~ "that were not managed by the inventory source will be promoted\n" -#~ "to the next manually created group or if there is no manually\n" -#~ "created group to promote them into, they will be left in the \"all\"\n" -#~ "default group for the inventory." -#~ msgstr "" -#~ "If checked, any hosts and groups that were\n" -#~ "previously present on the external source but are now removed\n" -#~ "will be removed from the Tower inventory. Hosts and groups\n" -#~ "that were not managed by the inventory source will be promoted\n" -#~ "to the next manually created group or if there is no manually\n" -#~ "created group to promote them into, they will be left in the \"all\"\n" -#~ "default group for the inventory." - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -4359,12 +3958,7 @@ msgstr "" "created group to promote them into, they will be left in the \"all\"\n" "default group for the inventory." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." -#~ msgstr "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." - -#: screens/Template/shared/JobTemplateForm.jsx:562 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." @@ -4372,11 +3966,7 @@ msgstr "" "If enabled, run this playbook as an\n" "administrator." -#: src/screens/Template/shared/JobTemplateForm.jsx:507 -#~ msgid "If enabled, run this playbook as an administrator." -#~ msgstr "If enabled, run this playbook as an administrator." - -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4386,7 +3976,7 @@ msgstr "" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." -#: screens/Template/shared/JobTemplateForm.jsx:502 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" @@ -4396,15 +3986,11 @@ msgstr "" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." -#: src/screens/Template/shared/JobTemplateForm.jsx:448 -#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -#~ msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." - -#: components/AdHocCommands/AdHocDetailsStep.jsx:200 +#: components/AdHocCommands/AdHocDetailsStep.js:200 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:606 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." @@ -4412,15 +3998,11 @@ msgstr "" "If enabled, simultaneous runs of this job\n" "template will be allowed." -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -#~ msgid "If enabled, simultaneous runs of this job template will be allowed." -#~ msgstr "If enabled, simultaneous runs of this job template will be allowed." - -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 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:613 +#: screens/Template/shared/JobTemplateForm.js:613 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" @@ -4430,15 +4012,11 @@ msgstr "" "be viewed at the host level. Facts are persisted and\n" "injected into the fact cache at runtime." -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." -#~ msgstr "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." - -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:155 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:151 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:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." @@ -4446,12 +4024,12 @@ msgstr "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "If you only want to remove access for this particular user, please remove them from the team." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" @@ -4459,31 +4037,23 @@ msgstr "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" -#: src/pages/Organizations/components/DeleteRoleConfirmationModal.jsx:54 -#~ msgid "If you {0} want to remove access for this particular user, please remove them from the team." -#~ msgstr "" - -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:134 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:103 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:91 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:110 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "Image" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 -#~ msgid "Image name" -#~ msgstr "Image name" - -#: screens/Job/JobOutput/JobOutput.jsx:748 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "Including File" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" @@ -4493,402 +4063,374 @@ msgstr "" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." -#: src/components/HostToggle/HostToggle.jsx:18 -#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." -#~ msgstr "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." - -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "Initiated By" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "Initiated by" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "Initiated by (username)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "Injector configuration" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "Input configuration" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -#~ msgid "Insights Analytics" -#~ msgstr "Insights Analytics" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -#~ msgid "Insights Analytics dashboard" -#~ msgstr "Insights Analytics dashboard" - -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "Insights Credential" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#~ msgid "Insights analytics" -#~ msgstr "Insights analytics" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -#~ msgid "Insights for Ansible" -#~ msgstr "Insights for Ansible" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "Insights for Ansible Automation Platform" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Insights for Ansible Automation Platform dashboard" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -#~ msgid "Insights for Ansible dashboard" -#~ msgstr "Insights for Ansible dashboard" - -#: components/Lookup/HostFilterLookup.jsx:109 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "Insights system ID" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "Instance" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "Instance Filters" -#: screens/Job/JobDetail/JobDetail.jsx:232 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "Instance Group" -#: components/Lookup/InstanceGroupsLookup.jsx:70 -#: components/Lookup/InstanceGroupsLookup.jsx:76 -#: components/Lookup/InstanceGroupsLookup.jsx:110 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:170 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:253 -#: screens/InstanceGroup/InstanceGroups.jsx:16 -#: screens/InstanceGroup/InstanceGroups.jsx:26 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:123 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:322 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:101 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "Instance ID" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "Instance group" -#: screens/InstanceGroup/InstanceGroup.jsx:99 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "Instance group not found." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:147 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 msgid "Instance group used capacity" msgstr "Instance group used capacity" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "Instance groups" -#: screens/InstanceGroup/InstanceGroup.jsx:81 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:273 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:156 -#: screens/InstanceGroup/Instances/InstanceList.jsx:234 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "Instances" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "Integer" -#: src/index.jsx:193 -#~ msgid "Integrations" -#~ msgstr "" - -#: util/validators.jsx:87 +#: util/validators.js:88 msgid "Invalid email address" msgstr "Invalid email address" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." -#: util/validators.jsx:32 +#: util/validators.js:33 msgid "Invalid time format" msgstr "Invalid time format" -#: screens/Login/Login.jsx:135 +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 #: util/getRelatedResourceDeleteDetails.js:201 #: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "Inventories with sources cannot be copied" -#: components/HostForm/HostForm.jsx:47 -#: components/JobList/JobListItem.jsx:181 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/HostFilterLookup.jsx:365 -#: components/Lookup/HostListItem.jsx:9 -#: components/Lookup/InventoryLookup.jsx:106 -#: components/Lookup/InventoryLookup.jsx:115 -#: components/Lookup/InventoryLookup.jsx:155 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/InventoryLookup.jsx:211 -#: components/PromptDetail/PromptDetail.jsx:177 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:94 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:124 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:276 -#: components/TemplateList/TemplateListItem.jsx:286 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:167 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:111 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "Inventory" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "Inventory (Name)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "Inventory File" -#: components/Lookup/HostFilterLookup.jsx:92 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "Inventory ID" -#: src/index.jsx:141 -#: src/pages/InventoryScripts.jsx:19 -#~ msgid "Inventory Scripts" -#~ msgstr "" - -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "Inventory Source" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "Inventory Source Sync" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "Inventory Source Sync Error" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:166 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "Inventory Sources" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "Inventory Sync" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "Inventory Type" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "Inventory Update" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:183 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "Inventory file" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "Inventory not found." -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "Inventory sync" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "Inventory sync failures" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: screens/Job/JobDetail/JobDetail.jsx:120 -#~ msgid "Isolated" -#~ msgstr "Isolated" +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "Is expanded" -#: screens/Job/JobOutput/JobOutput.jsx:742 +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "Is not expanded" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "Item Failed" -#: screens/Job/JobOutput/JobOutput.jsx:741 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "Item OK" -#: screens/Job/JobOutput/JobOutput.jsx:743 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "Item Skipped" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "Items" -#: src/components/Pagination/Pagination.jsx:142 -#~ msgid "Items Per Page" -#~ msgstr "" - -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "" -#: src/components/Pagination/Pagination.jsx:162 -#~ msgid "Items {itemMin} – {itemMax} of {count}" -#~ msgstr "" - -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:118 -#: screens/Project/ProjectList/ProjectListItem.jsx:70 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "JOB ID:" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "JSON" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "JSON tab" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "JSON:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:108 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "January" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "Job" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:390 -#: screens/Job/JobOutput/JobOutput.jsx:930 -#: screens/Job/JobOutput/JobOutput.jsx:931 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "Job Cancel Error" -#: screens/Job/JobDetail/JobDetail.jsx:412 -#: screens/Job/JobOutput/JobOutput.jsx:919 -#: screens/Job/JobOutput/JobOutput.jsx:920 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "Job Delete Error" -#: screens/Job/JobDetail/JobDetail.jsx:245 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "Job Slice" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 -#: screens/Template/shared/JobTemplateForm.jsx:482 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "Job Slice Parent" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "Job Slicing" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "Job Status" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:294 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:337 -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "Job Tags" -#: components/JobList/JobListItem.jsx:149 -#: components/TemplateList/TemplateList.jsx:202 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:99 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:14 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "Job Template" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:39 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 #: util/getRelatedResourceDeleteDetails.js:100 #: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "Job Templates" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." @@ -4896,533 +4438,498 @@ 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:180 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:183 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:142 -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "Job Type" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "Job status" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "Job status graph tab" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:121 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:154 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "Job templates" -#: components/JobList/JobList.jsx:163 -#: components/JobList/JobList.jsx:242 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:80 -#: screens/InstanceGroup/InstanceGroup.jsx:86 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:85 -#: screens/Setting/Settings.jsx:71 -#: screens/Template/Template.jsx:155 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "" -#: src/pages/JobsSettings.jsx:19 -#~ msgid "Jobs Settings" -#~ msgstr "" - -#: screens/Setting/SettingList.jsx:90 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "Jobs settings" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:138 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "July" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:133 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "June" -#: components/Search/AdvancedSearch.jsx:312 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "Key" -#: components/Search/AdvancedSearch.jsx:303 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "Key select" -#: components/Search/AdvancedSearch.jsx:306 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "Key typeahead" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "Keyword" -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "LDAP" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "LDAP 1" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "LDAP 2" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "LDAP 3" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "LDAP 4" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "LDAP 5" -#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "LDAP Default" -#: screens/Setting/SettingList.jsx:67 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "LDAP settings" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "LDAP1" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "LDAP2" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "LDAP3" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "LDAP4" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:176 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "Label Name" -#: components/JobList/JobListItem.jsx:228 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:209 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:114 -#: components/TemplateList/TemplateListItem.jsx:331 -#: screens/Job/JobDetail/JobDetail.jsx:279 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:304 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "Labels" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:398 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:144 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "Last Job Status" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "Last Login" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:307 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:255 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 -#: screens/Job/JobDetail/JobDetail.jsx:332 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:340 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:116 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "" -#: components/AddRole/AddResourceRole.jsx:31 -#: components/AddRole/AddResourceRole.jsx:45 -#: components/ResourceAccessList/ResourceAccessList.jsx:139 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:129 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:61 -#: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:107 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "" -#: components/TemplateList/TemplateList.jsx:225 -#: components/TemplateList/TemplateListItem.jsx:176 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "Last Ran" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "Last Run" -#: components/Lookup/HostFilterLookup.jsx:105 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "Last job" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -#~ msgid "Last job run" -#~ msgstr "Last job run" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:218 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:300 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "Last modified" -#: components/ResourceAccessList/ResourceAccessList.jsx:185 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "Last name" -#: screens/Project/ProjectList/ProjectListItem.jsx:305 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "Last used" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:130 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:228 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "Launch" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "Launch Management Job" -#: components/TemplateList/TemplateListItem.jsx:196 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:82 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "Launch Template" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "Launch management job" -#: components/TemplateList/TemplateListItem.jsx:204 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "Launch template" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "Launch workflow" -#: components/LaunchPrompt/LaunchPrompt.jsx:100 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "Launch | {0}" -#: components/DetailList/LaunchedByDetail.jsx:82 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "Launched By" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "Launched By (Username)" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -#~ msgid "Learn more about Insights Analytics" -#~ msgstr "Learn more about Insights Analytics" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -#~ msgid "Learn more about Insights for Ansible" -#~ msgstr "Learn more about Insights for Ansible" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "Learn more about Insights for Ansible Automation Platform" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js: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." -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "Legend" -#: components/Search/AdvancedSearch.jsx:267 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "Less than comparison." -#: components/Search/AdvancedSearch.jsx:273 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "Less than or equal to comparison." -#: screens/Setting/SettingList.jsx:137 -#: screens/Setting/Settings.jsx:96 -#~ msgid "License" -#~ msgstr "" - -#: screens/Setting/License/License.jsx:15 -#: screens/Setting/SettingList.jsx:142 -#~ msgid "License settings" -#~ msgstr "License settings" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:159 -#: components/AdHocCommands/AdHocDetailsStep.jsx:160 -#: components/JobList/JobList.jsx:210 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:155 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:88 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:231 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:156 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "Limit" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "Link to an available node" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "Loading" -#: src/components/AddRole/SelectResourceStep.jsx:89 -#~ msgid "Loading..." -#~ msgstr "" +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "Local" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "Local Time Zone" -#: components/Schedule/shared/ScheduleForm.jsx:121 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "Local time zone" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "Log In" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -#~ msgid "Log aggregator test sent successfully." -#~ msgstr "Log aggregator test sent successfully." - -#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "Logging" -#: screens/Setting/SettingList.jsx:109 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "Logging settings" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:329 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "Lookup modal" -#: components/Search/AdvancedSearch.jsx:177 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "Lookup select" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "Lookup type" -#: components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "Lookup typeahead" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 -#: screens/Project/ProjectList/ProjectListItem.jsx:68 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "MOST RECENT SYNC" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:251 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "Machine Credential" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:102 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "Machine credential" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 msgid "Managed" msgstr "Managed" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -#~ msgid "Managed by Tower" -#~ msgstr "Managed by Tower" - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "Managed nodes" -#: components/JobList/JobList.jsx:187 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "Management Job" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "Management job" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "Management job launch error" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "Management job not found." -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "Management jobs" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:121 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:175 -#: screens/Project/ProjectList/ProjectList.jsx:181 -#: screens/Project/ProjectList/ProjectListItem.jsx:211 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "Manual" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:118 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "March" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "Mattermost" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "Max Hosts" -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "Maximum" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "Maximum length" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:128 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "May" -#: screens/Organization/OrganizationList/OrganizationList.jsx:151 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "Metadata" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "Metric" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "Metrics" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "Minimum" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "Minimum length" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." @@ -5430,11 +4937,7 @@ msgstr "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." -#~ msgstr "Minimum number of instances that will be automatically assigned to this group when new instances come online." - -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." @@ -5442,200 +4945,191 @@ msgstr "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -#~ msgstr "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." - -#: components/Schedule/shared/ScheduleForm.jsx:143 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "Minute" -#: screens/Setting/Settings.jsx:96 +#: screens/Setting/Settings.js:96 msgid "Miscellaneous Authentication" msgstr "Miscellaneous Authentication" -#: screens/Setting/SettingList.jsx:105 +#: screens/Setting/SettingList.js:106 msgid "Miscellaneous Authentication settings" msgstr "Miscellaneous Authentication settings" -#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "Miscellaneous System" -#: screens/Setting/SettingList.jsx:101 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "Miscellaneous System settings" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "Missing" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:64 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:106 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "Missing resource" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 -#: screens/User/UserTokenList/UserTokenList.jsx:144 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:60 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:93 -#: components/Lookup/CredentialLookup.jsx:195 -#: components/Lookup/InventoryLookup.jsx:142 -#: components/Lookup/InventoryLookup.jsx:198 -#: 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:198 -#: components/TemplateList/TemplateList.jsx:215 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:139 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:142 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:108 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:158 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:137 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:130 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:100 -#: screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Project/ProjectList/ProjectList.jsx:193 -#: screens/Team/TeamList/TeamList.jsx:139 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "Modified By (Username)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:83 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:170 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:78 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "Modified by (username)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:58 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "Module" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:253 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "Mon" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:258 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "Monday" -#: components/Schedule/shared/ScheduleForm.jsx:147 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "Month" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "More information" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "More information for" -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "Multi-Select" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "Multiple Choice" -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "Multiple Choice (multiple select)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "Multiple Choice (single select)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "Multiple Choice Options" -#: src/index.jsx:110 -#: src/pages/Portal.jsx:19 -#~ msgid "My View" -#~ msgstr "" - -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:51 -#: components/AddRole/AddResourceRole.jsx:67 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:96 -#: components/JobList/JobList.jsx:167 -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:71 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:171 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: 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:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:182 -#: components/Lookup/HostFilterLookup.jsx:79 -#: components/Lookup/HostFilterLookup.jsx:364 -#: components/Lookup/HostListItem.jsx:8 -#: components/Lookup/InstanceGroupsLookup.jsx:92 -#: components/Lookup/InstanceGroupsLookup.jsx:103 -#: components/Lookup/InventoryLookup.jsx:133 -#: components/Lookup/InventoryLookup.jsx:148 -#: components/Lookup/InventoryLookup.jsx:189 -#: components/Lookup/InventoryLookup.jsx:204 -#: 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/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:165 -#: components/Schedule/ScheduleList/ScheduleList.jsx:185 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:96 -#: components/TemplateList/TemplateList.jsx:190 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:133 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -5648,300 +5142,299 @@ msgstr "Multiple Choice Options" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:113 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:140 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:28 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:123 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: screens/Application/shared/ApplicationForm.jsx:53 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:207 -#: screens/Credential/CredentialList/CredentialList.jsx:126 -#: screens/Credential/CredentialList/CredentialList.jsx:145 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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:129 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:129 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:91 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:117 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:9 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:94 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupItem.jsx:28 -#: screens/Host/HostGroups/HostGroupsList.jsx:164 -#: screens/Host/HostGroups/HostGroupsList.jsx:181 -#: screens/Host/HostList/HostList.jsx:145 -#: screens/Host/HostList/HostList.jsx:166 -#: screens/Host/HostList/HostListItem.jsx:28 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:163 -#: screens/InstanceGroup/Instances/InstanceList.jsx:170 -#: screens/InstanceGroup/Instances/InstanceList.jsx:211 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:117 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:47 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:21 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:119 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:145 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:117 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:136 -#: 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:154 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:74 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:109 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:33 -#: screens/Inventory/shared/InventoryForm.jsx:37 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:109 -#: 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:69 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:86 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:109 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:13 -#: screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: screens/Organization/OrganizationList/OrganizationList.jsx:150 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:69 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:86 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:14 -#: screens/Organization/shared/OrganizationForm.jsx:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:126 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:161 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:53 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectList.jsx:205 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:122 -#: screens/Team/TeamList/TeamList.jsx:147 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:29 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:181 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:60 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:64 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:186 -#: screens/User/UserTeams/UserTeamList.jsx:239 -#: screens/User/UserTeams/UserTeamListItem.jsx:18 -#: screens/User/UserTokenList/UserTokenList.jsx:177 -#: screens/User/UserTokenList/UserTokenListItem.jsx:20 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "Navigation" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:493 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "Never" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "Never Updated" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "Never expires" -#: components/JobList/JobList.jsx:199 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "New" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:81 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:93 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:116 -#: components/AddRole/AddResourceRole.jsx:215 -#: components/AddRole/AddResourceRole.jsx:250 -#: components/LaunchPrompt/LaunchPrompt.jsx:130 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:167 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "Next Run" -#: components/Search/Search.jsx:262 +#: components/Search/Search.js:262 msgid "No" msgstr "No" -#: screens/Job/JobOutput/JobOutput.jsx:749 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "No Hosts Matched" -#: screens/Job/JobOutput/JobOutput.jsx:737 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "No Hosts Remaining" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "No JSON Available" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "No Jobs" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "No Standard Error Available" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "No Standard Out Available" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "No inventory sync failures." -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "No items found." -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "No job data available" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "No result found" -#: components/Search/AdvancedSearch.jsx:110 -#: components/Search/AdvancedSearch.jsx:149 -#: components/Search/AdvancedSearch.jsx:188 -#: components/Search/AdvancedSearch.jsx:316 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "No results found" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "No subscriptions found" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "No survey questions found." -#: src/components/PaginatedDataList/PaginatedDataList.jsx:119 -#~ msgid "No {0} Found" -#~ msgstr "" - -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "No {pluralizedItemName} Found" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "Node Type" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "Node type" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "None" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "None (Run Once)" -#: components/Schedule/shared/ScheduleForm.jsx:142 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "None (run once)" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "Normal User" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "Not Found" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "Not configured" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "Not configured for inventory sync." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5951,12 +5444,8 @@ msgstr "" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." -#~ msgstr "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." - -#: screens/Host/HostGroups/HostGroupsList.jsx:218 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 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" @@ -5968,31 +5457,19 @@ msgstr "" "children. This list shows all groups the host is associated\n" "with directly and indirectly." -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#~ msgid "" -#~ "Note that you may still see the group in the list after\n" -#~ "disassociating if the host is also a member of that group’s \n" -#~ "children. This list shows all groups the host is associated \n" -#~ "with directly and indirectly." -#~ msgstr "" -#~ "Note that you may still see the group in the list after\n" -#~ "disassociating if the host is also a member of that group’s \n" -#~ "children. This list shows all groups the host is associated \n" -#~ "with directly and indirectly." +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." -#: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -#~ msgstr "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -#~ msgstr "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." - -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "Note: This field assumes the remote name is \"origin\"." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -6008,160 +5485,152 @@ msgstr "" "read only protocol (git://) does not use username or\n" "password information." -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." -#~ msgstr "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." - -#: src/screens/Inventory/Inventories.jsx:120 -#~ msgid "Notifcations" -#~ msgstr "Notifcations" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "Notification Color" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "Notification Template not found." -#: screens/ActivityStream/ActivityStream.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:191 -#: screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: screens/NotificationTemplate/NotificationTemplates.jsx:20 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:90 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "Notification Type" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:376 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "Notification color" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:250 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "Notification sent successfully" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:254 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "Notification timed out" -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "Notification type" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:141 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:158 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "November" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "OK" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:527 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "Occurrences" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:153 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "October" -#: components/AdHocCommands/AdHocDetailsStep.jsx:208 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:158 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:234 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:508 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "Off" -#: components/AdHocCommands/AdHocDetailsStep.jsx:207 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:158 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:234 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:508 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "On" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "On Failure" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "On Success" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:515 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "On date" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:239 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "On days" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:171 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "Only Group By" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "Option Details" -#: screens/Template/shared/JobTemplateForm.jsx:398 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -6171,211 +5640,167 @@ msgstr "" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." -#: src/screens/Template/shared/JobTemplateForm.jsx:342 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -#~ msgstr "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." - -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "Optionally select the credential to use to send status updates back to the webhook service." -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/shared/JobTemplateForm.jsx:555 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:222 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "Options" -#: components/Lookup/ApplicationLookup.jsx:119 -#: components/Lookup/OrganizationLookup.jsx:101 -#: components/Lookup/OrganizationLookup.jsx:107 -#: components/Lookup/OrganizationLookup.jsx:123 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:80 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:90 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:110 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:120 -#: components/PromptDetail/PromptProjectDetail.jsx:76 -#: components/PromptDetail/PromptProjectDetail.jsx:86 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:220 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:148 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:159 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:77 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 -#: screens/Project/ProjectList/ProjectListItem.jsx:279 -#: screens/Project/ProjectList/ProjectListItem.jsx:290 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:148 -#: screens/Team/TeamList/TeamListItem.jsx:38 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:196 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "Organization" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "Organization (Name)" -#: src/pages/Organizations/views/Organization.add.jsx:79 -#~ msgid "Organization Add" -#~ msgstr "" - -#: screens/Team/TeamList/TeamList.jsx:131 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "Organization Name" -#: src/pages/Organizations/screens/Organization/Organization.jsx:144 -#~ msgid "Organization detail tabs" -#~ msgstr "" - -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "Organization not found." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:176 -#: screens/Organization/OrganizationList/OrganizationList.jsx:124 -#: screens/Organization/OrganizationList/OrganizationList.jsx:171 -#: screens/Organization/Organizations.jsx:16 -#: screens/Organization/Organizations.jsx:26 -#: screens/User/User.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 #: util/getRelatedResourceDeleteDetails.js:231 #: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "" -#: src/pages/Organizations/views/Organizations.list.jsx:218 -#~ msgid "Organizations List" -#~ msgstr "" - -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "Other prompts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "Out of compliance" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "Output" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "Overwrite" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -#~ msgid "Overwrite Variables" -#~ msgstr "Overwrite Variables" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121 +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "Overwrite local groups and hosts from remote inventory source" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:59 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 msgid "Overwrite local variables from remote inventory source" msgstr "Overwrite local variables from remote inventory source" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "Overwrite variables" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:489 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "POST" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "PUT" -#: src/components/Pagination/Pagination.jsx:190 -#~ msgid "Page" -#~ msgstr "" - -#: src/components/Pagination/Pagination.jsx:189 -#~ msgid "Page <0/> of {pageCount}" -#~ msgstr "" - -#: src/components/Pagination/Pagination.jsx:193 -#~ msgid "Page Number" -#~ msgstr "" - -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "Pagerduty" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "Pagerduty Subdomain" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "Pagerduty subdomain" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "Pan Down" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "Pan Left" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "Pan Right" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "Pan Up" -#: components/AdHocCommands/AdHocDetailsStep.jsx:261 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "Pass extra command line changes. There are two ansible command line parameters:" -#: screens/Template/shared/JobTemplateForm.jsx:393 -#~ msgid "" -#~ "Pass extra command line variables to the playbook. This is the\n" -#~ "-e or --extra-vars command line parameter for ansible-playbook.\n" -#~ "Provide key/value pairs using either YAML or JSON. Refer to the\n" -#~ "Ansible Tower documentation for example syntax." -#~ msgstr "" -#~ "Pass extra command line variables to the playbook. This is the\n" -#~ "-e or --extra-vars command line parameter for ansible-playbook.\n" -#~ "Provide key/value pairs using either YAML or JSON. Refer to the\n" -#~ "Ansible Tower documentation for example syntax." - -#: screens/Template/shared/JobTemplateForm.jsx:417 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -6387,225 +5812,172 @@ msgstr "" "Provide key/value pairs using either YAML or JSON. Refer to the\n" "documentation for example syntax." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:242 -#~ msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the documentation for example syntax." -#~ msgstr "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the documentation for example syntax." - -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:70 -#: 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:77 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "Past 24 hours" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "Past month" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "Past two weeks" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "Past week" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "Pending" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "Pending Workflow Approvals" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "Pending delete" -#: src/components/Pagination/Pagination.jsx:158 -#~ msgid "Per Page" -#~ msgstr "" - -#: components/Lookup/HostFilterLookup.jsx:332 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "Perform a search to define a host filter" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -#~ msgid "Personal access token" -#~ msgstr "Personal access token" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "Play" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "Play Count" -#: screens/Job/JobOutput/JobOutput.jsx:754 +#: screens/Job/JobOutput/JobOutput.js:768 msgid "Play Started" msgstr "Play Started" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: screens/Job/JobDetail/JobDetail.jsx:220 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "Playbook" -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "Playbook Check" -#: screens/Job/JobOutput/JobOutput.jsx:755 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "Playbook Complete" -#: components/PromptDetail/PromptProjectDetail.jsx:122 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:231 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:80 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "Playbook Directory" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:36 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "Playbook Run" -#: screens/Job/JobOutput/JobOutput.jsx:746 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "Playbook Started" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "Playbook name" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "Playbook run" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "Plays" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "Please add survey questions." -#: src/components/PaginatedDataList/PaginatedDataList.jsx:122 -#~ msgid "Please add {0} to populate this list" -#~ msgstr "" - -#: src/components/PaginatedDataList/PaginatedDataList.jsx:136 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:199 -#~ msgid "Please add {0} {itemName} to populate this list" -#~ msgstr "" - -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Please add {pluralizedItemName} to populate this list" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:44 -#~ msgid "Please agree to End User License Agreement before proceeding." -#~ msgstr "Please agree to End User License Agreement before proceeding." - -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "Please click the Start button to begin." -#: util/validators.jsx:136 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "Please enter a valid URL" -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "Please enter a value." -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "Please log in" -#: components/Schedule/shared/ScheduleForm.jsx:567 +#: components/Schedule/shared/ScheduleForm.js:568 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:173 +#: screens/Template/shared/JobTemplateForm.js:173 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." - -#: components/Schedule/shared/ScheduleForm.jsx:559 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "Please select an end date/time that comes after the start date/time." -#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/HostFilterLookup.js:328 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:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "Pod spec override" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:29 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "Policy instance minimum" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:39 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "Policy instance percentage" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:69 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "Populate field from an external secret management system" -#: components/Lookup/HostFilterLookup.jsx:288 -#~ msgid "" -#~ "Populate the hosts for this inventory by using a search\n" -#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" -#~ "Refer to the Ansible Tower documentation for further syntax and\n" -#~ "examples." -#~ msgstr "" -#~ "Populate the hosts for this inventory by using a search\n" -#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" -#~ "Refer to the Ansible Tower documentation for further syntax and\n" -#~ "examples." - -#: components/Lookup/HostFilterLookup.jsx:288 -#~ msgid "" -#~ "Populate the hosts for this inventory by using a search\n" -#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" -#~ "Refer to the documentation for further syntax and\n" -#~ "examples." -#~ msgstr "" -#~ "Populate the hosts for this inventory by using a search\n" -#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" -#~ "Refer to the documentation for further syntax and\n" -#~ "examples." - -#: components/Lookup/HostFilterLookup.jsx:311 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" @@ -6619,24 +5991,16 @@ msgstr "" "examples. Refer to the Ansible Tower documentation for further syntax and\n" "examples." -#: src/components/Lookup/HostFilterLookup.jsx:287 -#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." -#~ msgstr "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:120 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:102 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "Port" -#: src/App.jsx:203 -#~ msgid "Portal Mode" -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Preconditions for running this node when there are multiple parents. Refer to the" -#: screens/Template/Survey/MultipleChoiceField.jsx:64 +#: screens/Template/Survey/MultipleChoiceField.js:64 msgid "" "Press 'Enter' to add more answer choices. One answer\n" "choice per line." @@ -6644,136 +6008,130 @@ msgstr "" "Press 'Enter' to add more answer choices. One answer\n" "choice per line." -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -#~ msgid "Press 'Enter' to add more answer choices. One answer choice per line." -#~ msgstr "Press 'Enter' to add more answer choices. One answer choice per line." - -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "Press Enter to edit. Press ESC to stop editing." -#: components/AdHocCommands/AdHocCommandsWizard.jsx:121 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "Preview" -#: src/components/Pagination/Pagination.jsx:179 -#~ msgid "Previous" -#~ msgstr "" - -#: src/index.jsx:88 -#~ msgid "Primary Navigation" -#~ msgstr "" - -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "Private key passphrase" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: screens/Template/shared/JobTemplateForm.jsx:561 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "Privilege Escalation" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "Privilege escalation password" -#: components/JobList/JobListItem.jsx:197 -#: components/Lookup/ProjectLookup.jsx:105 -#: components/Lookup/ProjectLookup.jsx:110 -#: components/Lookup/ProjectLookup.jsx:166 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/TemplateList/TemplateListItem.jsx:291 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "Project" -#: components/PromptDetail/PromptProjectDetail.jsx:119 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:228 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "Project Base Path" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "Project Sync" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:261 -#: screens/Project/ProjectList/ProjectListItem.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "Project Sync Error" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "Project Update" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "Project not found." -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "Project sync failures" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Dashboard/Dashboard.jsx:103 -#: screens/Project/ProjectList/ProjectList.jsx:164 -#: screens/Project/ProjectList/ProjectList.jsx:232 -#: screens/Project/Projects.jsx:14 -#: screens/Project/Projects.jsx:24 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 #: util/getRelatedResourceDeleteDetails.js:194 #: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "Promote Child Groups and Hosts" -#: components/Schedule/shared/ScheduleForm.jsx:617 -#: components/Schedule/shared/ScheduleForm.jsx:620 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "Prompt" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "Prompt Overrides" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:165 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "Prompt on launch" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "Prompt | {0}" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "Prompted Values" -#: components/LaunchPrompt/LaunchPrompt.jsx:107 -#: components/Schedule/shared/SchedulePromptableFields.jsx:110 -#~ msgid "Prompts" -#~ msgstr "Prompts" - -#: screens/Template/shared/JobTemplateForm.jsx:447 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6785,7 +6143,7 @@ msgstr "" "playbook. Multiple patterns are allowed. Refer to Ansible\n" "documentation for more information and examples on patterns." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -6797,17 +6155,11 @@ msgstr "" "patterns are allowed. Refer to Ansible documentation for more\n" "information and examples on patterns." -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 -#: src/screens/Template/shared/JobTemplateForm.jsx:393 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -#~ msgstr "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." - -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:162 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "Provide a value for this field or select the Prompt on launch option." -#: components/AdHocCommands/AdHocDetailsStep.jsx:265 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." @@ -6815,11 +6167,7 @@ msgstr "" "Provide key/value pairs using either\n" "YAML or JSON." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -#~ msgid "Provide key/value pairs using either YAML or JSON." -#~ msgstr "Provide key/value pairs using either YAML or JSON." - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -6831,136 +6179,128 @@ msgstr "" "The credentials you use will be stored for future use in\n" "retrieving renewal or expanded subscriptions." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -#~ 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:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." -#~ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." - -#: components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: screens/Template/shared/JobTemplateForm.jsx:632 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "Provisioning Callback URL" -#: screens/Template/shared/JobTemplateForm.jsx:627 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "Provisioning Callback details" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:70 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 -#: screens/Template/shared/JobTemplateForm.jsx:566 -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "Provisioning Callbacks" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "Pull" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "Question" -#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "RADIUS" -#: screens/Setting/SettingList.jsx:71 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "RADIUS settings" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:143 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "Read" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "Recent Jobs" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "Recent Jobs list tab" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "Recent Templates" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "Recent Templates list tab" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:110 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:36 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:163 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:76 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 msgid "Recent jobs" msgstr "Recent jobs" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:110 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "Recipient List" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:83 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "Recipient list" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:185 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "Red Hat subscription manifest" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "Redirect URIs" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "Redirect uris" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "Redirecting to dashboard" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "Redirecting to subscription detail" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "Refer to the" -#: screens/Template/shared/JobTemplateForm.jsx:437 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." @@ -6968,184 +6308,173 @@ msgstr "" "Refer to the Ansible documentation for details\n" "about the configuration file." -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -#~ msgid "Refer to the Ansible documentation for details about the configuration file." -#~ msgstr "Refer to the Ansible documentation for details about the configuration file." - -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "Refresh Token" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:82 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "Refresh Token Expiration" -#: screens/Project/ProjectList/ProjectListItem.jsx:133 +#: screens/Project/ProjectList/ProjectListItem.js:130 msgid "Refresh for revision" msgstr "Refresh for revision" -#: screens/Project/ProjectList/ProjectListItem.jsx:135 +#: screens/Project/ProjectList/ProjectListItem.js:132 msgid "Refresh project revision" msgstr "Refresh project revision" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "Regions" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "Registry credential" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "Related Groups" -#: components/Search/AdvancedSearch.jsx:139 -#: components/Search/AdvancedSearch.jsx:147 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 msgid "Related search type" msgstr "Related search type" -#: components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.js:146 msgid "Related search type typeahead" msgstr "Related search type typeahead" -#: components/JobList/JobListItem.jsx:130 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:371 -#: screens/Job/JobDetail/JobDetail.jsx:379 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "Relaunch" -#: components/JobList/JobListItem.jsx:111 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "Relaunch Job" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "Relaunch all hosts" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "Relaunch failed hosts" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "Relaunch on" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "Relaunch using host parameters" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:184 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "Remote Archive" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "Remove" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "Remove All Nodes" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "Remove Link" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "Remove Node" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "Remove any local modifications prior to performing an update." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "Remove {0} chip" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "Reorder" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "Repeat Frequency" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "Replace" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:52 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "Replace field with new value" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "Request subscription" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "Required" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "Resource Name" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "Resource deleted" -#: screens/User/UserRoles/UserRolesListItem.jsx:21 -#~ msgid "Resource name" -#~ msgstr "Resource name" - -#: screens/User/UserRoles/UserRolesListItem.jsx:40 -#~ msgid "Resource role" -#~ msgstr "Resource role" - -#: screens/User/UserRoles/UserRolesListItem.jsx:30 -#~ msgid "Resource type" -#~ msgstr "Resource type" - -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:58 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "Resources are missing from this template." -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "Restore initial value." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" @@ -7153,400 +6482,392 @@ msgstr "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" -#~ msgstr "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" - -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:904 -#: screens/Job/JobOutput/JobOutput.jsx:907 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "Return" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "Return to subscription management." -#: components/Search/AdvancedSearch.jsx:130 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "Returns results that have values other than this one as well as other filters." -#: components/Search/AdvancedSearch.jsx:117 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "Returns results that satisfy this one or any other filters." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "Revert" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "Revert all" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "Revert all to default" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:51 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "Revert field to previously saved value" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "Revert settings" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "Revert to factory default." -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:213 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "Revision" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "Revision #" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:149 -#: screens/Team/TeamRoles/TeamRolesList.jsx:183 -#: screens/User/UserList/UserList.jsx:165 -#: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "Role" -#: components/ResourceAccessList/ResourceAccessList.jsx:146 -#: components/ResourceAccessList/ResourceAccessList.jsx:159 -#: components/ResourceAccessList/ResourceAccessList.jsx:186 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "Roles" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:205 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "Run" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "Run Command" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:146 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "Run command" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:211 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "Run every" -#: components/Schedule/shared/ScheduleForm.jsx:137 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "Run frequency" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:325 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "Run on" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "Run type" -#: components/JobList/JobList.jsx:202 -#: components/TemplateList/TemplateListItem.jsx:112 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "Running" -#: screens/Job/JobOutput/JobOutput.jsx:747 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "Running Handlers" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 -#: screens/InstanceGroup/Instances/InstanceList.jsx:213 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:123 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "Running Jobs" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "Running jobs" -#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "SAML" -#: screens/Setting/SettingList.jsx:75 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "SAML settings" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "SCM update" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "SOCIAL" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "SSH password" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:186 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "SSL Connection" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "START" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: screens/Project/ProjectList/ProjectListItem.jsx:73 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "STATUS:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:303 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "Sat" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:308 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:439 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "Saturday" -#: components/AddRole/AddResourceRole.jsx:266 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:603 -#: components/Schedule/shared/ScheduleForm.jsx:609 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 -#: screens/Credential/shared/CredentialForm.jsx:322 -#: screens/Credential/shared/CredentialForm.jsx:327 -#: screens/Setting/shared/RevertFormActionGroup.jsx:13 -#: screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "Save & Exit" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -#~ msgid "Save and enable log aggregation before testing the log aggregator." -#~ msgstr "Save and enable log aggregation before testing the log aggregator." - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "Save link changes" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "Save successful!" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "Schedule Details" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "Schedule details" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "Schedule is active" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "Schedule is inactive" -#: components/Schedule/shared/ScheduleForm.jsx:523 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "Schedule is missing rrule" -#: components/Schedule/ScheduleList/ScheduleList.jsx:226 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:148 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "Schedule not found." + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:141 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:31 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:132 -#: screens/User/UserTokenList/UserTokenList.jsx:178 -#: screens/User/UserTokenList/UserTokenListItem.jsx:27 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "Scope" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "Scroll first" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "Scroll last" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "Scroll next" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "Scroll previous" -#: components/Lookup/HostFilterLookup.jsx:254 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:815 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "Search is disabled while the job is running" -#: components/Search/AdvancedSearch.jsx:346 -#: components/Search/Search.jsx:289 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "Search submit button" -#: components/Search/Search.jsx:278 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "Second" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:121 -#: components/PromptDetail/PromptProjectDetail.jsx:115 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:219 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "Seconds" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "See errors on the left" -#: components/JobList/JobListItem.jsx:69 -#: components/Lookup/HostFilterLookup.jsx:342 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "Select Credential Type" -#: screens/Host/HostGroups/HostGroupsList.jsx:243 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "Select Groups" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "Select Hosts" -#: components/AnsibleSelect/AnsibleSelect.jsx:37 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "" -#: screens/InstanceGroup/Instances/InstanceList.jsx:239 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "Select Instances" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "Select Items" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "Select Items from List" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "Select Labels" -#: components/AddRole/AddResourceRole.jsx:255 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "Select Roles to Apply" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "Select Teams" -#: src/components/AddRole/AddResourceRole.jsx:153 -#~ msgid "Select Users Or Teams" -#~ msgstr "" - -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "Select a JSON formatted service account key to autopopulate the following fields." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "Select a Node Type" -#: components/AddRole/AddResourceRole.jsx:189 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "Select a Resource Type" -#: screens/Template/shared/JobTemplateForm.jsx:338 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." @@ -7554,136 +6875,128 @@ msgstr "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." -#~ msgstr "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." - -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 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:181 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." -#: screens/Credential/shared/CredentialForm.jsx:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "Select a credential Type" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "Select a instance" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "Select a job to cancel" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "Select a metric" -#: components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "Select a module" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "Select a playbook" -#: screens/Template/shared/JobTemplateForm.jsx:326 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "Select a project before editing the execution environment." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "Select a row to approve" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "Select a row to deny" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "Select a row to disassociate" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "Select a subscription" -#: components/Schedule/shared/ScheduleForm.jsx:84 -#~ msgid "Select a valid date and time for this field" -#~ msgstr "Select a valid date and time for this field" - -#: components/HostForm/HostForm.jsx:40 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:56 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/ScheduleForm.jsx:85 -#: components/Schedule/shared/ScheduleForm.jsx:89 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:83 -#: screens/Inventory/shared/InventoryForm.jsx:59 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 -#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.jsx:51 -#: 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:431 -#: screens/Project/shared/ProjectForm.jsx:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:35 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:128 -#: screens/User/shared/UserForm.jsx:120 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "Select a value for this field" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "Select a webhook service." -#: components/DataListToolbar/DataListToolbar.jsx:75 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "Select an activity type" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 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:144 -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/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." +msgstr "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." -#: components/LaunchPrompt/steps/SurveyStep.jsx:128 +#: components/LaunchPrompt/steps/SurveyStep.js:128 msgid "Select an option" msgstr "Select an option" -#: screens/Project/shared/ProjectForm.jsx:204 +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "Select an organization before editing the default execution environment." -#: screens/Template/shared/JobTemplateForm.jsx:380 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -7697,25 +7010,7 @@ msgstr "" "credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" "credential(s) become the defaults that can be updated at run time." -#: screens/Template/shared/JobTemplateForm.jsx:355 -#~ msgid "" -#~ "Select credentials that allow Tower to access the nodes this job will be ran\n" -#~ "against. You can only select one credential of each type. For machine credentials (SSH),\n" -#~ "checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" -#~ "credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" -#~ "credential(s) become the defaults that can be updated at run time." -#~ msgstr "" -#~ "Select credentials that allow Tower to access the nodes this job will be ran\n" -#~ "against. You can only select one credential of each type. For machine credentials (SSH),\n" -#~ "checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" -#~ "credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" -#~ "credential(s) become the defaults that can be updated at run time." - -#: src/screens/Template/shared/JobTemplateForm.jsx:324 -#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." -#~ msgstr "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:83 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" @@ -7725,57 +7020,53 @@ msgstr "" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -#~ msgstr "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." - -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "Select job type" -#: components/LaunchPrompt/steps/SurveyStep.jsx:174 +#: components/LaunchPrompt/steps/SurveyStep.js:174 msgid "Select option(s)" msgstr "Select option(s)" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "Select period" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "Select roles to apply" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132 msgid "Select source path" msgstr "Select source path" -#: screens/Dashboard/DashboardGraph.jsx:148 -#: screens/Dashboard/DashboardGraph.jsx:149 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "Select status" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "Select tags" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "Select the Execution Environment you want this command to run inside." -#: screens/Inventory/shared/SmartInventoryForm.jsx:92 +#: screens/Inventory/shared/SmartInventoryForm.js:89 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:517 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." @@ -7783,40 +7074,24 @@ msgstr "" "Select the Instance Groups for this Organization\n" "to run on." -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "Select the application that this token will belong to." -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." -#: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." -#~ msgstr "Select the custom Python virtual environment for this inventory source sync to run on." - -#: 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." - -#: screens/Organization/shared/OrganizationForm.jsx:96 -#~ msgid "Select the default execution environment for this organization." -#~ msgstr "Select the default execution environment for this organization." - -#: screens/Project/shared/ProjectForm.jsx:196 -#~ msgid "Select the default execution environment for this project." -#~ msgstr "Select the default execution environment for this project." - -#: screens/Template/shared/JobTemplateForm.jsx:325 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "Select the execution environment for this job template." -#: components/Lookup/InventoryLookup.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:289 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." @@ -7824,12 +7099,7 @@ msgstr "" "Select the inventory containing the hosts\n" "you want this job to manage." -#: src/components/Lookup/InventoryLookup.jsx:89 -#: src/screens/Template/shared/JobTemplateForm.jsx:248 -#~ msgid "Select the inventory containing the hosts you want this job to manage." -#~ msgstr "Select the inventory containing the hosts you want this job to manage." - -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:108 msgid "" "Select the inventory file\n" "to be synced by this source. You can select from\n" @@ -7839,20 +7109,16 @@ msgstr "" "to be synced by this source. You can select from\n" "the dropdown or enter a file within the input." -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -#~ msgstr "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." - -#: components/HostForm/HostForm.jsx:33 -#: components/HostForm/HostForm.jsx:50 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "Select the inventory that this host will belong to." -#: screens/Template/shared/JobTemplateForm.jsx:361 +#: screens/Template/shared/JobTemplateForm.js:361 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:304 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." @@ -7860,251 +7126,227 @@ msgstr "" "Select the project containing the playbook\n" "you want this job to execute." -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -#~ msgid "Select the project containing the playbook you want this job to execute." -#~ msgstr "Select the project containing the playbook you want this job to execute." - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "Select your Ansible Automation Platform subscription to use." -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "Select {0}" -#: src/components/Lookup/Lookup.jsx:157 -#~ msgid "Select {header}" -#~ msgstr "" - -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:261 -#: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:42 -#: components/OptionsList/OptionsList.jsx:49 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 -#: components/TemplateList/TemplateListItem.jsx:131 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:26 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostGroups/HostGroupItem.jsx:26 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:115 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:177 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "Selected Category" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 -#~ msgid "Send a test log message to the configured log aggregator." -#~ msgstr "Send a test log message to the configured log aggregator." - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "Sender Email" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:94 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "Sender e-mail" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:148 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "September" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "Service account JSON file" -#: screens/Inventory/shared/InventorySourceForm.jsx:54 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "Set a value for this field" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "Set how many days of data should be retained." -#: screens/Setting/SettingList.jsx:116 +#: screens/Setting/SettingList.js:117 msgid "Set preferences for data collection, logos, and logins" msgstr "Set preferences for data collection, logos, and logins" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "Set source path to" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 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:129 +#: screens/Application/shared/ApplicationForm.js: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." -#: components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "Set type" -#: components/Search/AdvancedSearch.jsx:294 +#: components/Search/AdvancedSearch.js:298 msgid "Set type disabled for related search field fuzzy searches" msgstr "Set type disabled for related search field fuzzy searches" -#: components/Search/AdvancedSearch.jsx:99 +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "Set type select" -#: components/Search/AdvancedSearch.jsx:102 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "Set type typeahead" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "Set zoom to 100% and center graph" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "Setting category" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "Setting matches factory default." -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "Setting name" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:42 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "Show" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:158 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:234 -#: screens/Template/shared/JobTemplateForm.jsx:499 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "Show Changes" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:129 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "Show all groups" -#: components/AdHocCommands/AdHocDetailsStep.jsx:196 -#: components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "Show changes" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "Show description" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "Show less" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:128 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "Show only root groups" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "Sign in with Azure AD" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "Sign in with GitHub" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "Sign in with GitHub Enterprise" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "Sign in with GitHub Enterprise Organizations" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "Sign in with GitHub Enterprise Teams" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "Sign in with GitHub Organizations" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "Sign in with GitHub Teams" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "Sign in with Google" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "Sign in with SAML" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "Sign in with SAML {samlIDP}" -#: components/Search/Search.jsx:178 -#: components/Search/Search.jsx:179 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "Simple key select" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:257 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:312 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:352 -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "Skip Tags" -#: screens/Template/shared/JobTemplateForm.jsx:518 -#~ msgid "" -#~ "Skip tags are useful when you have a\n" -#~ "large playbook, and you want to skip specific parts of a\n" -#~ "play or task. Use commas to separate multiple tags. Refer\n" -#~ "to Ansible Tower documentation for details on the usage\n" -#~ "of tags." -#~ msgstr "" -#~ "Skip tags are useful when you have a\n" -#~ "large playbook, and you want to skip specific parts of a\n" -#~ "play or task. Use commas to separate multiple tags. Refer\n" -#~ "to Ansible Tower documentation for details on the usage\n" -#~ "of tags." - -#: screens/Template/shared/JobTemplateForm.jsx:542 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -8118,7 +7360,7 @@ msgstr "" "to the documentation for details on the usage\n" "of tags." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -8130,173 +7372,169 @@ msgstr "" "Use commas to separate multiple tags. Refer to Ansible Tower\n" "documentation for details on the usage of tags." -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 -#: src/screens/Template/shared/JobTemplateForm.jsx:487 -#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -#~ msgstr "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." - -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "Skipped" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "Slack" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 -#: screens/Host/HostList/SmartInventoryButton.jsx:39 -#: screens/Host/HostList/SmartInventoryButton.jsx:43 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "Smart Inventory" -#: screens/Inventory/SmartInventory.jsx:92 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "Smart Inventory not found." -#: components/Lookup/HostFilterLookup.jsx:307 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "Smart host filter" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "Smart inventory" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "Some of the previous step(s) have errors" -#: screens/Host/HostList/SmartInventoryButton.jsx:12 +#: screens/Host/HostList/SmartInventoryButton.js:12 msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." msgstr "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "Something went wrong with the request to test this credential and metadata." -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "Something went wrong..." -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "Sort question order" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: screens/Inventory/shared/InventorySourceForm.jsx:139 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "Source" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 -#: components/PromptDetail/PromptProjectDetail.jsx:98 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:87 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:228 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "Source Control Branch" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" msgstr "Source Control Branch/Tag/Commit" -#: components/PromptDetail/PromptProjectDetail.jsx:102 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "Source Control Credential" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "Source Control Credential Type" -#: components/PromptDetail/PromptProjectDetail.jsx:99 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:204 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "Source Control Refspec" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 msgid "Source Control Revision" msgstr "Source Control Revision" -#: components/PromptDetail/PromptProjectDetail.jsx:94 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:174 +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "Source Control Type" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:97 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:202 -#: screens/Project/ProjectList/ProjectList.jsx:189 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "Source Control URL" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "Source Control Update" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:285 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "Source Phone Number" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:188 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "Source Variables" -#: components/JobList/JobListItem.jsx:171 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "Source Workflow Job" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:178 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "Source control branch" -#: screens/Inventory/shared/InventorySourceForm.jsx:161 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "Source details" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:398 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "Source phone number" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "Source variables" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "Sourced from a project" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "Sources" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:465 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." @@ -8304,19 +7542,7 @@ msgstr "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -#~ msgid "" -#~ "Specify HTTP Headers in JSON format. Refer to\n" -#~ "the documentation for example syntax." -#~ msgstr "" -#~ "Specify HTTP Headers in JSON format. Refer to\n" -#~ "the documentation for example syntax." - -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." -#~ msgstr "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:379 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." @@ -8324,105 +7550,97 @@ msgstr "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -#~ msgstr "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." - -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "Specify a scope for the token's access" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "Specify the conditions under which this node should be executed" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "Standard Error" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "Standard Out" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "Standard error tab" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "Standard out tab" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: components/Schedule/shared/ScheduleForm.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "Start" -#: components/JobList/JobList.jsx:219 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "Start Time" -#: components/Schedule/shared/ScheduleForm.jsx:120 -#~ msgid "Start date/time" -#~ msgstr "Start date/time" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:399 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "Start message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:408 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "Start message body" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "Start sync process" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "Start sync source" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "Started" -#: components/JobList/JobList.jsx:196 -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:80 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:206 -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "Status" -#: screens/Job/JobOutput/JobOutput.jsx:723 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "Submit" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -8438,210 +7656,192 @@ msgstr "" "This is equivalent to specifying the --remote\n" "flag to git submodule update." -#: screens/Setting/SettingList.jsx:126 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "Subscription" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "Subscription Details" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "Subscription Management" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "Subscription manifest" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "Subscription selection modal" -#: screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "Subscription settings" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "Subscription type" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "Subscriptions table" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:183 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "Subversion" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "Success" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:417 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "Success message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:426 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "Success message body" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "Successful jobs" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:184 -#: screens/Project/ProjectList/ProjectListItem.jsx:98 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "Successfully copied to clipboard!" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "Sun" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:248 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:409 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "Sunday" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:159 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "Survey" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "Survey List" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "Survey Preview" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "Survey Toggle" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "Survey preview modal" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "Survey questions" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:113 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "Sync" -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "Sync Project" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "Sync all" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "Sync all sources" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "Sync error" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Project/ProjectList/ProjectListItem.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "Sync for revision" -#: screens/Project/ProjectList/ProjectListItem.jsx:123 +#: screens/Project/ProjectList/ProjectListItem.js:120 msgid "Syncing" msgstr "Syncing" -#: screens/Setting/SettingList.jsx:96 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 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/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "System Auditor" -#: src/pages/SystemSettings.jsx:19 -#~ msgid "System Settings" -#~ msgstr "" - -#: screens/Job/JobOutput/JobOutput.jsx:760 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "System Warning" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "System administrators have unrestricted access to all resources." -#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "TACACS+" -#: screens/Setting/SettingList.jsx:79 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "TACACS+ settings" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "Tabs" -#: screens/Template/shared/JobTemplateForm.jsx:502 -#~ msgid "" -#~ "Tags are useful when you have a large\n" -#~ "playbook, and you want to run a specific part of a\n" -#~ "play or task. Use commas to separate multiple tags.\n" -#~ "Refer to Ansible Tower documentation for details on\n" -#~ "the usage of tags." -#~ msgstr "" -#~ "Tags are useful when you have a large\n" -#~ "playbook, and you want to run a specific part of a\n" -#~ "play or task. Use commas to separate multiple tags.\n" -#~ "Refer to Ansible Tower documentation for details on\n" -#~ "the usage of tags." - -#: screens/Template/shared/JobTemplateForm.jsx:526 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -8655,7 +7855,7 @@ msgstr "" "Refer to the documentation for details on\n" "the usage of tags." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -8667,155 +7867,142 @@ msgstr "" "Use commas to separate multiple tags. Refer to Ansible Tower\n" "documentation for details on the usage of tags." -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 -#: src/screens/Template/shared/JobTemplateForm.jsx:471 -#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -#~ msgstr "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "Tags for the Annotation" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:176 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "Tags for the annotation (optional)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:245 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:309 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:249 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:326 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:448 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "Target URL" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "Task" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "Task Count" -#: screens/Job/JobOutput/JobOutput.jsx:751 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "Task Started" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "Tasks" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "Team not found." -#: components/AddRole/AddResourceRole.jsx:207 -#: components/AddRole/AddResourceRole.jsx:208 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:152 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:65 -#: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:117 -#: screens/Team/TeamList/TeamList.jsx:172 -#: screens/Team/Teams.jsx:14 -#: screens/Team/Teams.jsx:24 -#: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "" -#: screens/Template/Template.jsx:175 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "Template not found." -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -#~ msgid "Template type" -#~ msgstr "Template type" - -#: components/TemplateList/TemplateList.jsx:185 -#: components/TemplateList/TemplateList.jsx:242 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:85 -#: screens/Template/Templates.jsx:16 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 #: util/getRelatedResourceDeleteDetails.js:217 #: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "Test" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "Test External Credential" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "Test Notification" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:244 -#~ msgid "Test logging" -#~ msgstr "Test logging" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "Test notification" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "Test passed" -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "Text" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "Text Area" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "Textarea" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "That value was not found. Please enter or select a valid value." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:379 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr "The" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:196 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 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:87 +#: screens/Application/shared/ApplicationForm.js: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" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:119 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" @@ -8825,11 +8012,7 @@ msgstr "" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." -#~ msgstr "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." - -#: screens/Template/shared/JobTemplateForm.jsx:493 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" @@ -8839,11 +8022,7 @@ msgstr "" "before the job is canceled. Defaults to 0 for no job\n" "timeout." -#: src/screens/Template/shared/JobTemplateForm.jsx:439 -#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." -#~ msgstr "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:151 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" @@ -8853,29 +8032,25 @@ msgstr "" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." -#~ msgstr "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." - -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 msgid "" "The execution environment that will be used when launching\n" -"this job template. The resolved execution environment can be overridden by \n" +"this job template. The resolved execution environment can be overridden by\n" "explicitly assigning a different one to this job template." msgstr "" "The execution environment that will be used when launching\n" -"this job template. The resolved execution environment can be overridden by \n" +"this job template. The resolved execution environment can be overridden by\n" "explicitly assigning a different one to this job template." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" @@ -8885,15 +8060,11 @@ msgstr "" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." -#~ msgstr "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." - -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:111 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 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:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" @@ -8903,11 +8074,7 @@ msgstr "" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." -#: src/screens/Organization/shared/OrganizationForm.jsx:69 -#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." -#~ msgstr "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." - -#: screens/Template/shared/JobTemplateForm.jsx:431 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8921,46 +8088,38 @@ msgstr "" "usually 5. The default number of forks can be overwritten\n" "with a change to" -#: src/screens/Template/shared/JobTemplateForm.jsx:377 -#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -#~ msgstr "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:183 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "The page you requested could not be found." -#: components/AdHocCommands/AdHocDetailsStep.jsx:163 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" -#: screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.js:118 msgid "The project is currently syncing and the revision will be available after the sync is complete." msgstr "The project is currently syncing and the revision will be available after the sync is complete." -#: screens/Project/ProjectDetail/ProjectDetail.jsx:194 -#: screens/Project/ProjectList/ProjectListItem.jsx:108 +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 msgid "The project must be synced before a revision is available." msgstr "The project must be synced before a revision is available." -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Project/ProjectList/ProjectListItem.js:128 msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." msgstr "The project revision is currently out of date. Please refresh to fetch the most recent revision." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:103 -#~ msgid "The registry location where the container is stored." -#~ msgstr "The registry location where the container is stored." - -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "The resource associated with this node has been deleted." -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" @@ -8970,15 +8129,7 @@ msgstr "" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." -#~ msgstr "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." - -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 -#~ msgid "The tower instance group cannot be deleted." -#~ msgstr "The tower instance group cannot be deleted." - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" @@ -8994,137 +8145,81 @@ msgstr "" "or have {0} directly retrieve your playbooks from\n" "source control using the Source Control Type option above." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 -#~ msgid "" -#~ "There are no available playbook directories in {project_base_dir}.\n" -#~ "Either that directory is empty, or all of the contents are already\n" -#~ "assigned to other projects. Create a new directory there and make\n" -#~ "sure the playbook files can be read by the \"awx\" system user,\n" -#~ "or have {brandName} directly retrieve your playbooks from\n" -#~ "source control using the Source Control Type option above." -#~ msgstr "" -#~ "There are no available playbook directories in {project_base_dir}.\n" -#~ "Either that directory is empty, or all of the contents are already\n" -#~ "assigned to other projects. Create a new directory there and make\n" -#~ "sure the playbook files can be read by the \"awx\" system user,\n" -#~ "or have {brandName} directly retrieve your playbooks from\n" -#~ "source control using the Source Control Type option above." - -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." -#~ msgstr "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." - -#: screens/Template/Survey/MultipleChoiceField.jsx:35 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "There must be a value in at least one input" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "There was a problem logging in. Please try again." -#: screens/Login/Login.jsx:130 -#~ msgid "There was a problem signing in. Please try again." -#~ msgstr "There was a problem signing in. Please try again." - -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "There was an error loading this content. Please reload the page." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "There was an error parsing the file. Please check the file formatting and try again." -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "There was an error saving the workflow." -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -#~ msgid "There was an error testing the log aggregator." -#~ msgstr "There was an error testing the log aggregator." - -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 -#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" -#~ msgstr "These approvals cannot be deleted due to insufficient permissions or a pending job status" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:68 +#: components/AdHocCommands/AdHocDetailsStep.js:68 msgid "These are the modules that {0} supports running commands against." msgstr "These are the modules that {0} supports running commands against." -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -#~ msgid "These are the modules that {brandName} supports running commands against." -#~ msgstr "These are the modules that {brandName} supports running commands against." - -#: components/AdHocCommands/AdHocDetailsStep.jsx:141 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "These are the verbosity levels for standard out of the command run that are supported." -#: components/AdHocCommands/AdHocDetailsStep.jsx:124 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "These arguments are used with the specified module." -#: components/AdHocCommands/AdHocDetailsStep.jsx:113 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "These arguments are used with the specified module. You can find information about {0} by clicking" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:391 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "Third" -#: screens/Template/shared/JobTemplateForm.jsx:156 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "This Project needs to be updated" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "This action will delete the following:" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 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:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "This action will disassociate the following role from {0}:" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "This action will disassociate the following:" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:115 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "This container group is currently being by other resources. Are you sure you want to delete it?" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:297 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 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:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "This credential type is currently being used by some credentials and cannot be deleted" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and help\n" -#~ "streamline customer experience and success." -#~ msgstr "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and help\n" -#~ "streamline customer experience and success." - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and to provide\n" -#~ "Insights Analytics to subscribers." -#~ msgstr "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and to provide\n" -#~ "Insights Analytics to subscribers." - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" @@ -9134,17 +8229,7 @@ msgstr "" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and to provide\n" -#~ "Red Hat Insights for Ansible." -#~ msgstr "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and to provide\n" -#~ "Red Hat Insights for Ansible." - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" @@ -9154,149 +8239,134 @@ msgstr "" "future releases of the Tower Software and help\n" "streamline customer experience and success." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Tower Software and to provide\n" -#~ "Insights Analytics to Tower subscribers." -#~ msgstr "" -#~ "This data is used to enhance\n" -#~ "future releases of the Tower Software and to provide\n" -#~ "Insights Analytics to Tower subscribers." - -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "This execution environment is currently being used by other resources. Are you sure you want to delete it?" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "This field may not be blank" -#: util/validators.jsx:120 +#: util/validators.js:121 msgid "This field must be a number" msgstr "This field must be a number" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 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}" -#: util/validators.jsx:60 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "This field must be a number and have a value between {min} and {max}" -#: util/validators.jsx:160 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "This field must be a regular expression" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:49 -#: util/validators.jsx:104 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "This field must be an integer" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:99 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "This field must be at least {0} characters" -#: util/validators.jsx:51 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "This field must be at least {min} characters" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:52 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "This field must be greater than 0" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:81 -#: screens/User/shared/UserForm.jsx:92 -#: util/validators.jsx:5 -#: util/validators.jsx:69 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "" -#: util/validators.jsx:94 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "This field must not contain spaces" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "This field must not exceed {0} characters" -#: util/validators.jsx:42 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "This field will be retrieved from an external secret management system using the specified credential." -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "This instance group is currently being by other resources. Are you sure you want to delete it?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -msgstr "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." +msgstr "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 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:242 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "This is the only time the client secret will be shown." -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 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:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "This job template is currently being used by other resources. Are you sure you want to delete it?" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:176 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "This organization is currently being by other resources. Are you sure you want to delete it?" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:279 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "This project is currently being used by other resources. Are you sure you want to delete it?" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "This project is currently on sync and cannot be clicked until sync process completed" -#: screens/Template/shared/JobTemplateForm.jsx:156 -#~ msgid "This project needs to be updated" -#~ msgstr "This project needs to be updated" - -#: components/Schedule/ScheduleList/ScheduleList.jsx:126 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "This schedule is missing an Inventory" -#: components/Schedule/ScheduleList/ScheduleList.jsx:151 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "This schedule is missing required survey values" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:65 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:105 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "This step contains errors" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "This value does not match the password you entered previously. Please confirm that password." -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" @@ -9304,35 +8374,31 @@ msgstr "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" -#~ msgstr "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" - -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "This workflow does not have any nodes configured." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:283 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "Thu" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:288 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:429 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "Thursday" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "Time" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -9348,11 +8414,7 @@ msgstr "" "considered current, and a new project update will be\n" "performed." -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." -#~ msgstr "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -9366,232 +8428,222 @@ msgstr "" "Cache Timeout, it is not considered current, and a new\n" "inventory sync will be performed." -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -#~ msgstr "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." - -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "Timed out" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:125 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:112 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:492 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "Timeout" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "Timeout minutes" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "Timeout seconds" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:93 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "Toggle Legend" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "Toggle Password" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:103 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "Toggle Tools" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "Toggle expand/collapse event lines" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "Toggle host" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "Toggle instance" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "Toggle legend" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "Toggle notification approvals" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "Toggle notification start" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "Toggle schedule" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "Toggle tools" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:369 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "Token" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "Token information" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "Token not found." -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -#~ msgid "Token type" -#~ msgstr "Token type" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:109 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:133 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:112 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "Tokens" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "Tools" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "Top Pagination" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:272 -#: screens/InstanceGroup/Instances/InstanceList.jsx:214 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:124 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "Total Jobs" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "Total Nodes" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "Total jobs" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "Track submodules" -#: components/PromptDetail/PromptProjectDetail.jsx:56 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "Track submodules latest commit on branch" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "Trial" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:158 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:187 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:217 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:262 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:316 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "True" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:263 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "Tue" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:268 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:419 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "Tuesday" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:83 -#: 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:166 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:199 -#: components/TemplateList/TemplateList.jsx:224 -#: components/TemplateList/TemplateListItem.jsx:175 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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:146 -#: screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:118 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:12 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:270 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceList.jsx:212 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:120 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:162 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:75 -#: screens/Project/ProjectList/ProjectList.jsx:178 -#: screens/Project/ProjectList/ProjectList.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:210 -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: 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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "Type" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:45 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "Type Details" -#: screens/Template/Survey/MultipleChoiceField.jsx:61 +#: screens/Template/Survey/MultipleChoiceField.js:61 msgid "" "Type answer then click checkbox on right to select answer as\n" "default." @@ -9599,137 +8651,110 @@ msgstr "" "Type answer then click checkbox on right to select answer as\n" "default." -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -#~ msgid "Type answer then click checkbox on right to select answer as default." -#~ msgstr "Type answer then click checkbox on right to select answer as default." +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "UTC" -#: components/HostForm/HostForm.jsx:61 +#: components/HostForm/HostForm.js:62 msgid "Unable to change inventory on a host" msgstr "Unable to change inventory on a host" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "Unavailable" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "Undo" -#: screens/Job/JobOutput/JobOutput.jsx:829 +#: screens/Job/JobOutput/JobOutput.js:843 msgid "Unfollow" msgstr "Unfollow" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "Unlimited" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "Unreachable" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "Unreachable Host Count" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "Unreachable Hosts" -#: util/dates.jsx:93 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "Unrecognized day string" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "Unsaved changes modal" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "Update Revision on Launch" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -#~ msgid "Update on Launch" -#~ msgstr "Update on Launch" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -#~ msgid "Update on Project Update" -#~ msgstr "Update on Project Update" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "Update on launch" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:69 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:136 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "Update on project update" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "Update options" -#: components/PromptDetail/PromptProjectDetail.jsx:61 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 msgid "Update revision on job launch" msgstr "Update revision on job launch" -#: screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.js:87 msgid "Update settings pertaining to Jobs within {0}" msgstr "Update settings pertaining to Jobs within {0}" -#: screens/Setting/SettingList.jsx:91 -#~ msgid "Update settings pertaining to Jobs within {brandName}" -#~ msgstr "Update settings pertaining to Jobs within {brandName}" - -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "Update webhook key" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "Updating" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr "Upload a .zip file" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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." -#: src/screens/Inventory/shared/InventorySourceForm.jsx:57 -#: src/screens/Organization/shared/OrganizationForm.jsx:33 -#: src/screens/Project/shared/ProjectForm.jsx:286 -#~ msgid "Use Default Ansible Environment" -#~ msgstr "Use Default Ansible Environment" - -#: src/components/AnsibleSelect/AnsibleSelect.jsx:35 -#~ msgid "Use Default {label}" -#~ msgstr "" - -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -#~ msgid "Use Fact Storage" -#~ msgstr "Use Fact Storage" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:45 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "Use SSL" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:50 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "Use TLS" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" @@ -9739,554 +8764,531 @@ msgstr "" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 -#~ msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" -#~ msgstr "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" - -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/Instances/InstanceList.js:215 msgid "Used Capacity" msgstr "Used Capacity" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:74 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "Used capacity" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:155 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "" -#: screens/Setting/SettingList.jsx:115 -#: screens/Setting/Settings.jsx:114 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "" -#: src/pages/UISettings.jsx:19 -#~ msgid "User Interface Settings" -#~ msgstr "" - -#: screens/Setting/SettingList.jsx:120 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "User Interface settings" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:131 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "User Type" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "User analytics" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "User and Insights analytics" -#: components/AppContainer/PageHeaderToolbar.jsx:150 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "User details" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "User not found." -#: screens/User/UserTokenList/UserTokenList.jsx:170 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "User tokens" -#: components/AddRole/AddResourceRole.jsx:22 -#: components/AddRole/AddResourceRole.jsx:37 -#: components/ResourceAccessList/ResourceAccessList.jsx:130 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:100 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:250 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:304 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:64 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:257 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:334 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:437 -#: 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:120 -#: screens/User/UserList/UserList.jsx:162 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:64 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "Username / password" -#: components/AddRole/AddResourceRole.jsx:197 -#: components/AddRole/AddResourceRole.jsx:198 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:115 -#: screens/User/UserList/UserList.jsx:155 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:113 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:271 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:131 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:73 -#: screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:341 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:209 -#: screens/Template/shared/JobTemplateForm.jsx:415 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "Variables" -#: screens/Job/JobOutput/JobOutput.jsx:752 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "Variables Prompted" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "Vault password" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "Vault password | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "Verbose" -#: components/AdHocCommands/AdHocDetailsStep.jsx:131 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:118 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:187 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "Verbosity" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "Version" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -#~ msgid "View Activity Stream settings" -#~ msgstr "View Activity Stream settings" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "View Azure AD settings" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "View Credential Details" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "View Details" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "View GitHub Settings" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "View Google OAuth 2.0 settings" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "View Host Details" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:165 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "View Inventory Details" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "View Inventory Groups" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "View Inventory Host Details" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "View JSON examples at <0>www.json.org" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "View Job Details" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "View Jobs settings" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "View LDAP Settings" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "View Logging settings" -#: screens/Setting/MiscAuthentication/MiscAuthentication.jsx:32 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 msgid "View Miscellaneous Authentication settings" msgstr "View Miscellaneous Authentication settings" -#: screens/Setting/MiscSystem/MiscSystem.jsx:32 +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "View Miscellaneous System settings" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "View Organization Details" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "View Project Details" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "View RADIUS settings" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "View SAML settings" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "View Schedules" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "View Settings" -#: screens/Template/Template.jsx:159 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "View Survey" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "View TACACS+ settings" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "View Team Details" -#: screens/Template/Template.jsx:259 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "View Template Details" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "View Tokens" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "View User Details" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "View User Interface settings" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "View Workflow Approval Details" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "View YAML examples at <0>docs.ansible.com" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "View activity stream" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "View all Credentials." -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "View all Hosts." -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:93 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "View all Inventories." -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "View all Inventory Hosts." -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "View all Jobs" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "View all Jobs." -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "View all Notification Templates." -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "View all Organizations." -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "View all Projects." -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "View all Teams." -#: screens/Template/Template.jsx:176 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "View all Templates." -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "View all Users." -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "View all Workflow Approvals." -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "View all applications." -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "View all credential types" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "View all execution environments" -#: screens/InstanceGroup/ContainerGroup.jsx:95 -#: screens/InstanceGroup/InstanceGroup.jsx:101 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "View all instance groups" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "View all management jobs" -#: screens/Setting/Settings.jsx:197 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "View all settings" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "View all tokens." -#: screens/Setting/SettingList.jsx:138 -#~ msgid "View and edit your license information" -#~ msgstr "View and edit your license information" - -#: screens/Setting/SettingList.jsx:127 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "View and edit your subscription information" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "View event details" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "View inventory source details" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "View job {0}" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "View node details" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 msgid "View smart inventory host details" msgstr "View smart inventory host details" -#: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:180 -#: components/TemplateList/TemplateListItem.jsx:186 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "Visualizer" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:42 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "WARNING:" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "Waiting" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:759 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "Warning" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "Warning: Unsaved Changes" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "We were unable to locate licenses associated with this account." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "We were unable to locate subscriptions associated with this account." -#: components/DetailList/LaunchedByDetail.jsx:53 -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:179 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:101 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "Webhook Credential" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:167 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "Webhook Credentials" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:175 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "Webhook Key" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:168 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:247 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "Webhook Service" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:171 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:159 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "Webhook URL" -#: screens/Template/shared/JobTemplateForm.jsx:658 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:253 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "Webhook details" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "Webhook services can use this as a shared secret." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:41 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:148 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 msgid "Webhooks" msgstr "Webhooks" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:273 +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "Wed" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:278 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:424 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "Wednesday" -#: components/Schedule/shared/ScheduleForm.jsx:146 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "Week" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "Weekday" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "Weekend day" -#: screens/Login/Login.jsx:150 -#~ msgid "Welcome to Ansible {brandName}!" -#~ msgstr "Welcome to Ansible {brandName}!" - -#: screens/Login/Login.jsx:152 -#~ msgid "Welcome to Ansible {brandName}! Please Sign In." -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." @@ -10294,11 +9296,11 @@ msgstr "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "Welcome to {brandName}!" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" @@ -10308,12 +9310,7 @@ msgstr "" "combining local variables with those found on the\n" "external source." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." -#~ msgstr "When not checked, a merge will be performed, combining local variables with those found on the external source." - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" @@ -10323,46 +9320,41 @@ msgstr "" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -#~ msgstr "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." - -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "Workflow" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "Workflow Approval" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "Workflow Approval not found." -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "Workflow Approvals" -#: components/JobList/JobList.jsx:188 -#: components/JobList/JobListItem.jsx:39 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "Workflow Job" -#: components/JobList/JobListItem.jsx:159 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:15 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 #: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "Workflow Job Template" @@ -10377,37 +9369,37 @@ msgstr "Workflow Job Template Nodes" msgid "Workflow Job Templates" msgstr "Workflow Job Templates" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "Workflow Link" -#: components/TemplateList/TemplateList.jsx:203 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:100 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "Workflow Template" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:453 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "Workflow approved message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:465 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "Workflow approved message body" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:477 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "Workflow denied message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:489 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "Workflow denied message body" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "Workflow documentation" @@ -10415,87 +9407,75 @@ msgstr "Workflow documentation" msgid "Workflow job templates" msgstr "Workflow job templates" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "Workflow link modal" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "Workflow node view modal" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:501 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "Workflow pending message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:513 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "Workflow pending message body" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:525 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "Workflow timed out message" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:537 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "Workflow timed out message body" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "Write" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "YAML:" -#: components/Schedule/shared/ScheduleForm.jsx:148 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "Year" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:259 msgid "Yes" msgstr "Yes" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 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:156 +#: components/Lookup/MultiCredentialsLookup.js: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:95 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "You do not have permission to delete the following Groups: {itemsUnableToDelete}" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:90 -#~ msgid "You do not have permission to delete the following {0}: {itemsUnableToDelete}" -#~ msgstr "" - -#: components/PaginatedTable/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 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:147 -#~ msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -#~ msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" -#: src/contexts/Network.jsx:40 -#~ msgid "You have been logged out." -#~ msgstr "" - -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" @@ -10503,563 +9483,374 @@ msgstr "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 -#~ msgid "You may apply a number of possible variables in the message. Refer to the" -#~ msgstr "You may apply a number of possible variables in the message. Refer to the" - -#: components/AppContainer/AppContainer.jsx:245 -#~ msgid "You will be logged out in {0} seconds due to inactivity." -#~ msgstr "You will be logged out in {0} seconds due to inactivity." - -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "Your session has expired. Please log in to continue where you left off." -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "Your session is about to expire" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "Zoom In" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "Zoom Out" -#: screens/Template/shared/JobTemplateForm.jsx:756 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js: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:753 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js:142 msgid "a new webhook url will be generated on save." msgstr "a new webhook url will be generated on save." -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 -#~ msgid "actions" -#~ msgstr "actions" +#: screens/Template/Survey/SurveyListItem.js:157 +msgid "actions" +msgstr "actions" -#: src/pages/Organizations/components/OrganizationDetail.jsx:56 -#~ msgid "add {currentTab}" -#~ msgstr "" - -#: src/pages/Organizations/components/OrganizationDetail.jsx:45 -#~ msgid "adding {currentTab}" -#~ msgstr "" - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "and click on Update Revision on Launch" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "approved" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "brand logo" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -#~ msgid "capacity adjustment" -#~ msgstr "capacity adjustment" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:235 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "command" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "confirm disassociate" -#: src/pages/Organizations/components/OrganizationDetail.jsx:38 -#~ msgid "confirm removal of {currentTab}/cancel and go back to {currentTab} view." -#~ msgstr "" - -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#~ msgid "controller instance" -#~ msgstr "controller instance" - -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -#~ msgid "copy to clipboard disabled" -#~ msgstr "copy to clipboard disabled" - -#: src/pages/Organizations/components/OrganizationDetail.jsx:60 -#~ msgid "delete {currentTab}" -#~ msgstr "" - -#: src/pages/Organizations/components/OrganizationDetail.jsx:36 -#~ msgid "deleting {currentTab} association with orgs" -#~ msgstr "" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "deletion error" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "denied" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "disassociate" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "documentation" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:250 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:170 -#: screens/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "edit" -#: src/pages/Organizations/components/OrganizationEdit.jsx:20 -#~ msgid "edit view" -#~ msgstr "" +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "edit survey" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "encrypted" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -#~ msgid "expiration" -#~ msgstr "expiration" - -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 -#~ msgid "for more details." -#~ msgstr "for more details." - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "for more info." -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "for more information." -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -#~ msgid "group" -#~ msgstr "group" - -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -#~ msgid "groups" -#~ msgstr "groups" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:169 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "here" -#: components/AdHocCommands/AdHocDetailsStep.jsx:120 -#: components/AdHocCommands/AdHocDetailsStep.jsx:189 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "here." -#: components/Lookup/HostFilterLookup.jsx:360 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "hosts" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -#~ msgid "instance counts" -#~ msgstr "instance counts" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -#~ msgid "instance group used capacity" -#~ msgstr "instance group used capacity" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -#~ msgid "instance host name" -#~ msgstr "instance host name" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -#~ msgid "instance type" -#~ msgstr "instance type" - -#: components/Lookup/HostListItem.jsx:30 -#~ msgid "inventory" -#~ msgstr "inventory" - -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: screens/Job/JobDetail/JobDetail.jsx:119 -#~ msgid "isolated instance" -#~ msgstr "isolated instance" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "ldap user" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "login type" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "min" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "move down" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "move up" -#: components/Lookup/HostListItem.jsx:23 -#~ msgid "name" -#~ msgstr "name" - -#: screens/Template/Survey/MultipleChoiceField.jsx:81 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "new choice" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "of" -#: src/components/Pagination/Pagination.jsx:198 -#~ msgid "of {pageCount}" -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:233 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "option to the" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 -#~ msgid "or attributes of the job such as" -#~ msgstr "or attributes of the job such as" - -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "page" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "relaunch jobs" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 -#~ msgid "resource name" -#~ msgstr "resource name" - -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 -#~ msgid "resource role" -#~ msgstr "resource role" - -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 -#~ msgid "resource type" -#~ msgstr "resource type" - -#: src/pages/Organizations/components/OrganizationEdit.jsx:22 -#~ msgid "save/cancel and go back to view" -#~ msgstr "" - -#: src/pages/Organizations/components/OrganizationDetail.jsx:47 -#~ msgid "save/cancel and go back to {currentTab} view" -#~ msgstr "" - -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -#~ msgid "scope" -#~ msgstr "scope" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "sec" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "seconds" -#: components/AdHocCommands/AdHocDetailsStep.jsx:57 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "select module" -#: src/pages/Organizations/components/OrganizationListItem.jsx:29 -#~ msgid "select organization {itemId}" -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:130 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "select verbosity" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "social login" -#: screens/Template/shared/JobTemplateForm.jsx:347 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "source control branch" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "system" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -#~ msgid "team name" -#~ msgstr "team name" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "timed out" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "toggle changes" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -#~ msgid "token name" -#~ msgstr "token name" - -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 -#~ msgid "type" -#~ msgstr "type" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "updated" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "workflow job template webhook key" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "{0, plural, one {Delete Group?} other {Delete Groups?}}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:179 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" msgstr "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.js:236 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:248 +#: components/JobList/JobList.js:254 msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}" msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:222 -#~ 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:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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:179 +#: screens/Credential/CredentialList/CredentialList.js:178 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.js:170 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.js:187 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:257 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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.js:186 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}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 -#~ 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:174 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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:235 +#: screens/Project/ProjectList/ProjectList.js:241 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:245 +#: components/TemplateList/TemplateList.js:251 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?}}" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#: components/JobList/JobListCancelButton.jsx:65 -#~ msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" -#~ msgstr "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" - -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -#~ msgid "{0}" -#~ msgstr "" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "{0} (deleted)" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:135 -#~ msgid "{0} List" -#~ msgstr "" - -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "{0} more" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "{0} sources with sync failures." -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -#~ msgid "{0}: {1}" -#~ msgstr "{0}: {1}" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "{brandName} logo" -#: src/pages/Organizations/components/OrganizationDetail.jsx:54 -#~ msgid "{currentTab} detail view" -#~ msgstr "" - -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "{dateStr} by <0>{username}" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:130 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "{forks, plural, one {# fork} other {# forks}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{intervalValue, plural, one {day} other {days}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:186 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{intervalValue, plural, one {hour} other {hours}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:184 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{intervalValue, plural, one {minute} other {minutes}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{intervalValue, plural, one {month} other {months}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{intervalValue, plural, one {week} other {weeks}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{intervalValue, plural, one {year} other {years}}" -#: src/components/Pagination/Pagination.jsx:163 -#~ msgid "{itemMin} - {itemMax} of {count}" -#~ msgstr "" - -#: components/Schedule/shared/DateTimePicker.jsx:49 +#: components/Schedule/shared/DateTimePicker.js:49 msgid "{label} date" msgstr "{label} date" -#: components/Schedule/shared/DateTimePicker.jsx:57 +#: components/Schedule/shared/DateTimePicker.js:57 msgid "{label} time" msgstr "{label} time" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "{minutes} min {seconds} sec" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" -#~ msgstr "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" - -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" -#: src/components/JobList/JobListCancelButton.jsx:81 -#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -#~ msgstr "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" - -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" -#: src/components/JobList/JobListCancelButton.jsx:68 -#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -#~ msgstr "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" - -#: src/components/JobList/JobListCancelButton.jsx:57 -#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -#~ msgstr "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" - -#: components/DetailList/NumberSinceDetail.jsx:19 +#: components/DetailList/NumberSinceDetail.js:19 msgid "{number} since {dateStr}" msgstr "{number} since {dateStr}" -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" - -#: src/components/JobList/JobListCancelButton.jsx:96 -#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -#~ msgstr "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" diff --git a/awx/ui_next/src/locales/es/messages.po b/awx/ui_next/src/locales/es/messages.po index f042c1671c..5193e08b06 100644 --- a/awx/ui_next/src/locales/es/messages.po +++ b/awx/ui_next/src/locales/es/messages.po @@ -2,370 +2,372 @@ msgid "" msgstr "" "POT-Creation-Date: 2021-06-08 18:28+0000\n" "Mime-Version: 1.0\n" -"Language: es \n" +"Language: es\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "(Limitado a los primeros 10)" -#: components/TemplateList/TemplateListItem.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "(Preguntar al ejecutar)" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* Este campo se recuperará de un sistema de gestión de claves secretas externo con la credencial especificada." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -msgid "- Enable Concurrent Jobs" -msgstr "- Habilitar las tareas concurrentes" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -msgid "- Enable Webhooks" -msgstr "- Habilitar Webhooks" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "/ (raíz del proyecto)" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:211 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "0 (Normal)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:102 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "0 (Advertencia)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:103 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "1 (Información)" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:212 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "1 (Nivel de detalle)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:104 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "2 (Depurar)" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:213 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "2 (Más nivel de detalle)" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "3 (Depurar)" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "4 (Depuración de la conexión)" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "5 (Depuración de WinRM)" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" "the branch field not otherwise available." msgstr "Un refspec para extraer (pasado al módulo git de Ansible). Este parámetro permite el acceso a las referencias a través del campo de rama no disponible de otra manera." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "Un manifiesto de suscripción es una exportación de una suscripción de Red Hat. Para generar un manifiesto de suscripción, vaya a <0>access.redhat.com. Consulte la <1>Guía del usuario para obtener más información." -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "TODOS" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:211 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "Servicio API/Clave de integración" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "Token API" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "Servicio API/Clave de integración" -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "Acerca de" -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:70 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:145 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "Acceso" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "Expiración del token de acceso" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:275 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "Cuenta SID" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "Cuenta Token" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "Acción" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:164 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:257 -#: screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 -#: screens/Credential/CredentialList/CredentialList.jsx:149 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:165 -#: screens/Host/HostList/HostListItem.jsx:42 -#: 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:148 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: 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:223 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:172 -#: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:151 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:168 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "Acciones" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:83 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 -#: components/TemplateList/TemplateListItem.jsx:233 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "Actividad" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:44 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "Flujo de actividad" -#: screens/Setting/SettingList.jsx:110 -msgid "Activity Stream settings" -msgstr "Configuración del flujo de actividad" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "Selector de tipo de flujo de actividad" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "Actor" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "Añadir" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "Agregar enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "Agregar nodo" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "Agregar pregunta" -#: components/AddRole/AddResourceRole.jsx:184 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "Agregar roles" -#: components/AddRole/AddResourceRole.jsx:181 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "Agregar roles de equipo" -#: components/AddRole/AddResourceRole.jsx:178 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "Agregar roles de usuario" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "Agregar un nuevo nodo" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 msgid "Add a new node between these two nodes" msgstr "Agregar un nuevo nodo entre estos dos nodos" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "Agregar grupo de contenedores" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "Agregar grupo existente" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "Agregar host existente" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "Agregar grupo de instancias" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "Agregar inventario" -#: components/TemplateList/TemplateList.jsx:133 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "Agregar plantilla de trabajo" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "Agregar nuevo grupo" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "Agregar nuevo host" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "Agregar tipo de recurso" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "Agregar inventario inteligente" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "Agregar permisos de equipo" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "Agregar permisos de usuario" -#: components/TemplateList/TemplateList.jsx:134 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "Agregar plantilla de flujo de trabajo" -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "Administración" -#: components/DataListToolbar/DataListToolbar.jsx:85 -#: screens/Job/JobOutput/JobOutput.jsx:706 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "Avanzado" -#: components/Search/AdvancedSearch.jsx:282 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "Documentación de búsqueda avanzada" -#: components/Search/AdvancedSearch.jsx:264 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "Entrada de valores de búsqueda avanzada" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:172 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -373,382 +375,369 @@ msgid "" "like the Ansible inventory .ini file format." msgstr "Luego de cada actualización del proyecto en el que se modifique la revisión SCM, actualice el inventario del origen seleccionado antes de llevar a cabo tareas. Esto está orientado a contenidos estáticos, como el formato de archivo .ini del inventario Ansible." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "Después del número de ocurrencias" -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "Modal de alerta" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "Todos" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "Todos los tipos de tarea" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "Todas las tareas" -#: components/PromptDetail/PromptProjectDetail.jsx:48 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "Permitir la anulación de la rama" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -msgid "Allow Provisioning Callbacks" -msgstr "Permitir la ejecución utilizando Callbacks" +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 +msgid "Allow branch override" +msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "Permitir el cambio de la rama o revisión de la fuente de control en una plantilla de trabajo que utilice este proyecto." -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "Lista de URI permitidos, separados por espacios" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "Siempre" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "Amazon EC2" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "Se ha producido un error" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "Debe seleccionar un inventario" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "Ansible Tower" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "Documentación de Ansible Tower." -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "Tipo de respuesta" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "Nombre de la variable de respuesta" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "Cualquiera" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "Aplicación" -#: screens/User/Users.jsx:36 -msgid "Application Name" -msgstr "Nombre de la aplicación" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -msgid "Application access token" -msgstr "Token de acceso a la aplicación" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "Información de la aplicación" -#: screens/User/UserTokenList/UserTokenList.jsx:111 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "Nombre de la aplicación" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "No se encontró la aplicación." -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 -#: util/getRelatedResourceDeleteDetails.js:215 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 +#: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "Aplicaciones" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "Aplicaciones y tokens" -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "Aprobación" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "Aprobar" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "Aprobado" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "Aprobado: {0}. Consulte el flujo de actividad para obtener más información." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "Aprobado por {0} - {1}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "Abril" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "¿Está seguro de que desea cancelar esta tarea?" -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "¿Está seguro de que desea eliminar:" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "¿Está seguro de que desea deshabilitar la autenticación local? Esto podría afectar la capacidad de los usuarios para iniciar sesión y la capacidad del administrador del sistema para revertir este cambio." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "¿Está seguro de que desea salir del Creador de flujo de trabajo sin guardar los cambios?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "¿Está seguro de que desea eliminar todos los nodos de este flujo de trabajo?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "¿Está seguro de que desea eliminar el siguiente nodo:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "¿Está seguro de que desea eliminar este enlace?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "¿Está seguro de que desea eliminar este nodo?" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "¿Está seguro de que desea eliminar el acceso de {1} a {0}? Esto afecta a todos los miembros del equipo." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "¿Está seguro de que desea eliminar el acceso de {username} a {0}?" -#: screens/Job/JobOutput/JobOutput.jsx:844 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "¿Está seguro de que desea enviar la solicitud para cancelar este trabajo?" -#: components/AdHocCommands/AdHocDetailsStep.jsx:106 -#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "Argumentos" -#: screens/Job/JobDetail/JobDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "Artefactos" -#: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "Asociar" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "Asociar error del rol" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "Modal de asociación" -#: components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "Debe seleccionar al menos un valor para este campo." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "Agosto" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "Identificación" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "Expiración del código de autorización" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "Tipo de autorización" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "Auto" -#: screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "Azure AD" -#: screens/Setting/SettingList.jsx:60 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "Configuración de Azure AD" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:125 -#: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:133 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "Volver" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "Volver a Credenciales" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "Volver al panel de control." -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "Volver a Grupos" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "Volver a Hosts" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "Volver a Inventarios" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "Volver a Tareas" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "Volver a Notificaciones" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "Volver a Organizaciones" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "Volver a Proyectos" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "Volver a Programaciones" -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: 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/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "Volver a Configuración" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "Volver a Fuentes" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "Volver a Equipos" -#: screens/Template/Template.jsx:138 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "Volver a Plantillas" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "Volver a Tokens" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "Volver a Usuarios" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "Volver a Aprobaciones del flujo de trabajo" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "Volver a las aplicaciones" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "Volver a los tipos de credenciales" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "Volver a los entornos de ejecución" -#: screens/InstanceGroup/ContainerGroup.jsx:56 -#: screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "Volver a los grupos de instancias" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "Volver a las tareas de gestión" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:69 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -756,11 +745,11 @@ msgid "" "path used to locate playbooks." msgstr "Directorio base utilizado para encontrar playbooks. Los directorios encontrados dentro de esta ruta se mostrarán en el menú desplegable del directorio de playbooks. Junto a la ruta base y el directorio de playbooks seleccionado, se creará la ruta completa utilizada para encontrar los playbooks." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "Contraseña de autenticación básica" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -768,1049 +757,1059 @@ msgid "" "provide a custom refspec." msgstr "Rama para realizar la comprobación. Además de las ramas, puede introducir etiquetas, hashes de commit y referencias arbitrarias. Es posible que algunos hashes y referencias de commit no estén disponibles, a menos que usted también proporcione un refspec personalizado." -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "Imagen de marca" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "Navegar" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "De forma predeterminada, recopilamos y transmitimos datos analíticos sobre el uso del servicio a Red Hat. Hay dos categorías de datos recopilados por el servicio. Consulte <0>esta página de documentación de Tower para obtener más información. Desmarque las siguientes casillas para deshabilitar esta funcionalidad." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:184 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" 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:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "Tiempo de espera de la caché" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "Tiempo de espera de la caché" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "Tiempo de espera de la caché (segundos)" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:126 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:134 -#: components/Lookup/HostFilterLookup.jsx:326 -#: 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: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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "Cancelar" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "Cancelar sincronización de la fuente del inventario" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:820 -#: screens/Job/JobOutput/JobOutput.jsx:821 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "Cancelar tarea" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "Cancelar sincronización del proyecto" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:210 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "Cancelar sincronización" -#: screens/Job/JobOutput/JobOutput.jsx:828 -#: screens/Job/JobOutput/JobOutput.jsx:831 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "Cancelar tarea" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "Cancelar cambios de enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "Cancelar eliminación del enlace" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "Cancelar búsqueda" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "Cancelar eliminación del nodo" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "Cancelar reversión" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "Cancelar la tarea seleccionada" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "Cancelar las tareas seleccionadas" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "Cancelar modificación de la suscripción" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:389 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "Cancelar {0}" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "Cancelado" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:152 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." -msgstr "No se puede habilitar la agregación de registros sin proporcionar\n" +msgstr "" +"No se puede habilitar la agregación de registros sin proporcionar\n" "el host y el tipo de agregación de registros." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "Capacidad" -#: components/Search/AdvancedSearch.jsx:185 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 +msgid "Capacity Adjustment" +msgstr "" + +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "Versión de contains que no distingue mayúsculas de minúsculas" -#: components/Search/AdvancedSearch.jsx:209 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "Versión de endswith que no distingue mayúsculas de minúsculas." -#: components/Search/AdvancedSearch.jsx:173 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "Versión de exact que no distingue mayúsculas de minúsculas." -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "Versión de regex que no distingue mayúsculas de minúsculas." -#: components/Search/AdvancedSearch.jsx:197 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "Versión de startswith que no distingue mayúsculas de minúsculas." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:75 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." msgstr "Cambie PROJECTS_ROOT al implementar {brandName} para cambiar esta ubicación." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "Cambiado" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "Cambios" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "Canal" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:206 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "Comprobar" -#: components/Search/AdvancedSearch.jsx:251 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "Comprobar si el campo dado o el objeto relacionado son nulos; se espera un valor booleano." -#: components/Search/AdvancedSearch.jsx:257 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "Comprobar si el valor del campo dado está presente en la lista proporcionada; se espera una lista de elementos separada por comas." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr "Elegir un archivo .json" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "Elegir un tipo de notificación" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:28 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "Elegir un directorio de playbook" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "Elegir un tipo de fuente de control" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "Elegir un servicio de Webhook" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:199 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "Seleccionar un tipo de tarea" -#: components/AdHocCommands/AdHocDetailsStep.jsx:86 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "Elegir un módulo" -#: screens/Inventory/shared/InventorySourceForm.jsx:147 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "Elegir una fuente" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "Elegir un método HTTP" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." msgstr "Elija el tipo o formato de respuesta que desee como indicador para el usuario. Consulte la documentación de Ansible Tower para obtener más información sobre cada una de las opciones." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -msgid "Choose an email option" -msgstr "Elegir una opción de correo electrónico" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "Elija los roles que se aplicarán a los recursos seleccionados. Tenga en cuenta que todos los roles seleccionados se aplicarán a todos los recursos seleccionados." -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "Elija los recursos que recibirán nuevos roles. Podrá seleccionar los roles que se aplicarán en el siguiente paso. Tenga en cuenta que los recursos elegidos aquí recibirán todos los roles elegidos en el siguiente paso." -#: components/AddRole/AddResourceRole.jsx:194 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "Elija el tipo de recurso que recibirá los nuevos roles. Por ejemplo, si desea agregar nuevos roles a un conjunto de usuarios, elija Users (Usuarios) y haga clic en Next (Siguiente). Podrá seleccionar los recursos específicos en el siguiente paso." -#: components/PromptDetail/PromptProjectDetail.jsx:40 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "Limpiar" -#: components/DataListToolbar/DataListToolbar.jsx:64 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "Borrar todos los filtros" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "Borrar suscripción" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "Borrar selección de la suscripción" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "Haga clic en un nodo disponible para crear un nuevo enlace. Haga clic fuera del gráfico para cancelar." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 msgid "Click the Edit button below to reconfigure the node." msgstr "Haga clic en el botón Edit (Modificar) para volver a configurar el nodo." -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "Haga clic en este botón para verificar la conexión con el sistema de gestión de claves secretas con la credencial seleccionada y las entradas especificadas." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "Haga clic para crear un nuevo enlace a este nodo." -#: screens/Template/Survey/MultipleChoiceField.jsx:114 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "Haga clic para alternar el valor predeterminado" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "Haga clic para ver los detalles de la tarea" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "ID del cliente" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "Identificador del cliente" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "Identificador del cliente" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "Clave secreta del cliente" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "Tipo de cliente" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "Cerrar" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "Cerrar modal de suscripción" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "Nube" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "Contraer" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "Comando" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "Compatible" -#: screens/Template/shared/JobTemplateForm.jsx:602 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "Tareas concurrentes" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "Confirmar" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "Confirmar eliminación" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "Confirmar deshabilitación de la autorización local" -#: screens/User/shared/UserForm.jsx:87 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "Confirmar la contraseña" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "Confirmar cancelación de la tarea" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "Confirmar cancelación" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "Confirmar eliminación" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "Confirmar disociación" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "Confirmar eliminación de enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "Confirmar eliminación de nodo" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "Confirmar eliminación de todos los nodos" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "Confirmar la reversión de todo" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "Confirmar selección" -#: screens/Job/JobDetail/JobDetail.jsx:236 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "Grupo de contenedores" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "Grupo de contenedores" -#: screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "No se encontró el grupo de contenedores." -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "Carga de contenido" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "Continuar" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." msgstr "Controlar el nivel de salida que producirá Ansible para las tareas de actualización de fuentes de inventario." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." msgstr "Controlar el nivel de salida que producirá Ansible al ejecutar playbooks." -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." msgstr "Controlar el nivel de salida que producirá Ansible al ejecutar playbooks." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "Convergencia" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "Selección de convergencia" -#: components/CopyButton/CopyButton.jsx:41 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "Copiar" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "Copiar credencial" -#: components/CopyButton/CopyButton.jsx:48 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "Copiar error" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "Copiar entorno de ejecución" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "Copiar inventario" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "Copiar plantilla de notificaciones" -#: screens/Project/ProjectList/ProjectListItem.jsx:211 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "Copiar proyecto" -#: components/TemplateList/TemplateListItem.jsx:207 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "Copiar plantilla" -#: screens/Project/ProjectList/ProjectListItem.jsx:166 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "Copie la revisión completa al portapapeles." -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "Copyright" -#: screens/Template/shared/JobTemplateForm.jsx:406 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "Crear" -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "Crear una nueva aplicación" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "Crear nueva credencial" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "Crear nuevo host" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "Crear nueva plantilla de trabajo" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "Crear nueva plantilla de notificación" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "Crear nueva organización" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "Crear nuevo proyecto" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "Agregar nuevo planificador" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "Crear nuevo equipo" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "Crear nuevo usuario" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "Crear plantilla de flujo de trabajo" -#: screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "Crear un nuevo inventario inteligente con el filtro aplicado" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "Crear nuevo grupo de contenedores" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "Crear un nuevo tipo de credencial" -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "Crear un nuevo tipo de credencial" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "Crear un nuevo entorno de ejecución" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "Crear nuevo grupo" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "Crear nuevo host" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "Crear nuevo grupo de instancias" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "Crear nuevo inventario" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "Crear nuevo inventario inteligente" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "Crear nueva fuente" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "Crear token de usuario" -#: 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:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:182 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:134 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "Creado" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:158 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: 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:190 -#: components/TemplateList/TemplateList.jsx:208 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:137 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 -#: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:151 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: 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:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "Creado por (nombre de usuario)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "Creado por (nombre de usuario)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: 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:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 -#: util/getRelatedResourceDeleteDetails.js:173 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 +#: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "Credencial" -#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:73 msgid "Credential Input Sources" msgstr "Fuentes de entrada de la credencial" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "Nombre de la credencial" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "Tipo de credencial" -#: routeConfig.jsx:115 -#: 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 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "Tipos de credencial" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "No se encontró la credencial." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "Contraseñas de credenciales" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "Credencial para autenticarse con Kubernetes u OpenShift. Debe ser del tipo \"Kubernetes/OpenShift API Bearer Token\". Si se deja en blanco, se usará la cuenta de servicio del Pod subyacente." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "Credencial para autenticarse con un registro de contenedores protegido." -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." msgstr "No se encontró el tipo de credencial." -#: components/JobList/JobListItem.jsx:212 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:193 -#: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: 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/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: 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:374 -#: util/getRelatedResourceDeleteDetails.js:97 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 +#: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "Credenciales" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:54 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "No se permiten las credenciales que requieran contraseñas al iniciarse. Para continuar, elimine o reemplace las siguientes credenciales por otras del mismo tipo: {0}" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "Página actual" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "Especificaciones del pod personalizado" -#: components/TemplateList/TemplateListItem.jsx:144 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "Debe reemplazar el entorno virtual personalizado {0} por un entorno de ejecución." -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:53 -msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -msgstr "Debe reemplazar el entorno virtual personalizado {virtualEnvironment} por un entorno de ejecución." +#: components/TemplateList/TemplateListItem.js:155 +msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "Personalizar mensajes." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "Personalizar especificaciones del pod" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "ELIMINADO" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "Panel de control" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "Panel de control (toda la actividad)" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "Período de conservación de datos" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 -#: components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "Día" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:173 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 msgid "Days of Data to Keep" msgstr "Días de datos para mantener" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:108 msgid "Days remaining" msgstr "Días restantes" -#: screens/Job/JobOutput/JobOutput.jsx:698 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "Debug" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "Diciembre" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "Predeterminado" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "Entorno de ejecución predeterminado" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "Respuesta predeterminada" -#: screens/Setting/SettingList.jsx:102 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "Defina características y funciones a nivel del sistema" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:235 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:246 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: 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: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:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "ELIMINAR" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "Eliminar todos los grupos y hosts" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:278 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "Eliminar credencial" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "Eliminar entorno de ejecución" -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "Borrar un host" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "Eliminar inventario" -#: screens/Job/JobDetail/JobDetail.jsx:397 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "Eliminar tarea" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "Eliminar plantilla de trabajo" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:348 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "Eliminar notificación" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "Eliminar organización" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "Eliminar proyecto" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "Eliminar pregunta" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "Eliminar planificación" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "BORRAR ENCUESTA" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "Eliminar el equipo" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "Eliminar usuario" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "Eliminar token de usuario" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "Eliminar la aprobación del flujo de trabajo" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "Eliminar plantilla de trabajo del flujo de trabajo" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "Eliminar todos los nodos" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "Eliminar aplicación" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "Eliminar tipo de credencial" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "Eliminar el error" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "Eliminar grupo de instancias" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "Eliminar fuente de inventario" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:73 -msgid "Delete on Update" -msgstr "Eliminar la actualización" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "Eliminar inventario inteligente" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1818,681 +1817,721 @@ msgid "" "of time required to complete an update." msgstr "Elimine el repositorio local por completo antes de realizar una actualización. Según el tamaño del repositorio, esto podría incrementar significativamente el tiempo necesario para completar una actualización." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 +msgid "Delete the project before syncing" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "Eliminar este enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "Eliminar este nodo" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "¿Eliminar {pluralizedItemName}?" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "Eliminado" -#: components/TemplateList/TemplateList.jsx:268 -#: screens/Credential/CredentialList/CredentialList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:230 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "Error de eliminación" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "Error de eliminación" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "Denegado" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "Denegado: {0}. Consulte el flujo de actividad para obtener más información." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "Denegado por {0} - {1}" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "Denegar" -#: screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "Obsoleto" -#: 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:186 -#: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:227 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: 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/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:57 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: 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:148 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: 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:246 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: 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:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "Descripción" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:251 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "Canales destinatarios" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "Canales destinatarios o usuarios" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "Números SMS del destinatario" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "Números SMS del destinatario" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "Canales destinatarios" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "Canales destinatarios o usuarios" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:61 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:71 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:63 -#: screens/InstanceGroup/InstanceGroup.jsx:64 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:144 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:37 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "Detalles" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "Pestaña de detalles" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:240 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:294 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "Deshabilite la verificación de SSL" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "Deshabilitar la verificación SSL" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "Disociar" -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "¿Disociar grupo del host?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "¿Disociar host del grupo?" -#: screens/InstanceGroup/Instances/InstanceList.jsx:190 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "¿Disociar instancia del grupo de instancias?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "¿Disociar grupos relacionados?" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "¿Disociar equipos relacionados?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "Disociar rol" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "Disociar rol" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "¿Disociar?" -#: screens/Template/shared/JobTemplateForm.jsx:480 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 +msgid "Discard local changes before syncing" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." msgstr "Divida el trabajo realizado por esta plantilla de trabajo en la cantidad especificada de fracciones de trabajo, cada una ejecutando las mismas tareas respecto de una fracción de inventario." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "Documentación." -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "Finalizado" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "Descargar salida" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "Correo electrónico" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "Opciones de correo electrónico" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:162 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" "executing job tasks." msgstr "Cada vez que se ejecute una tarea con este inventario, actualice el inventario de la fuente seleccionada antes de ejecutar tareas de trabajo." -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." msgstr "Cada vez que una tarea se ejecute con este proyecto, actualice la revisión del proyecto antes de iniciar dicha tarea." -#: 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:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:200 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:149 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:153 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx: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: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 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "Editar" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "Modificar credencial" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "Modificar configuración del complemento de credenciales" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:46 -#: screens/Setting/Settings.jsx:49 -#: screens/Setting/Settings.jsx:53 -#: screens/Setting/Settings.jsx:56 -#: screens/Setting/Settings.jsx:59 -#: screens/Setting/Settings.jsx:62 -#: screens/Setting/Settings.jsx:65 -#: screens/Setting/Settings.jsx:68 -#: screens/Setting/Settings.jsx:71 -#: screens/Setting/Settings.jsx:74 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:93 -#: screens/Setting/Settings.jsx:96 -#: screens/Setting/Settings.jsx:99 -#: screens/Setting/Settings.jsx:102 -#: screens/Setting/Settings.jsx:105 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Settings.jsx:111 -#: screens/Setting/Settings.jsx:114 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "Modificar detalles" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "Modificar entorno de ejecución" -#: screens/Host/HostGroups/HostGroupItem.jsx:50 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "Modificar grupo" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "Modificar host" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "Editar inventario" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "Modificar enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "Modificar nodo" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "Modificar plantilla de notificación" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "Editar organización" -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Project/ProjectList/ProjectListItem.jsx:202 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "Modificar proyecto" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "Editar pregunta" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "Modificar programación" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:122 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "Modificar fuente" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "Modificar equipo" -#: components/TemplateList/TemplateListItem.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:198 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:129 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "Modificar plantilla" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "Modificar usuario" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "Modificar aplicación" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "Editar el tipo de credencial" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "Modificar detalles" -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "Editar grupo" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "Editar el servidor" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "Modificar grupo de instancias" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "Modificar este enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "Modificar este nodo" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 +msgid "Edit workflow" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "Tiempo transcurrido" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "Tiempo transcurrido" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 msgid "Elapsed time that the job ran" msgstr "Tiempo transcurrido de la ejecución de la tarea " -#: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:71 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "Correo electrónico" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" msgstr "Opciones de correo electrónico" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:64 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "Activar los trabajos concurrentes" -#: screens/Template/shared/JobTemplateForm.jsx:609 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "Habilitar almacenamiento de eventos" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:215 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "Habilitar verificación del certificado HTTPS" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -msgid "Enable Privilege Escalation" -msgstr "Activar la elevación de privilegios" - -#: screens/Template/shared/JobTemplateForm.jsx:583 -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "Habilitar Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "Habilitar Webhook para esta plantilla de trabajo del flujo de trabajo." -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -msgid "Enable Webhooks" -msgstr "Habilitar Webhooks" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:159 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "Habilitar registro externo" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:191 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "Habilitar eventos de seguimiento del sistema de registro de forma individual" -#: components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "Habilitar elevación de privilegios" -#: screens/Setting/SettingList.jsx:56 -msgid "Enable simplified login for your {brandName} applications" -msgstr "Habilitar inicio de sesión simplificado para sus aplicaciones {brandName}" +#: screens/Setting/SettingList.js:52 +msgid "Enable simplified login for your {0} applications" +msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:589 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "Habilitar webhook para esta plantilla." -#: components/Lookup/HostFilterLookup.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "Habilitado" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 +msgid "Enabled Options" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "Valor habilitado" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "Variable habilitada" -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" -"callback URL. Using the URL a host can contact {BrandName}\n" +"callback URL. Using the URL a host can contact {0}\n" "and request a configuration update using this job\n" "template." -msgstr "Habilita la creación de una URL de callback de aprovisionamiento. Con la URL, un host puede contactar a {BrandName} y solicitar la actualización de la configuración utilizando esta plantilla de trabajo." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:232 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" @@ -2500,874 +2539,892 @@ msgid "" "template" msgstr "Habilita la creación de una URL de callback de aprovisionamiento. Con la URL, un host puede contactar a {BrandName} y solicitar la actualización de la configuración utilizando esta plantilla de trabajo." -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:155 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "Cifrado" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "Fin" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "Acuerdo de licencia de usuario final" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -msgid "End date/time" -msgstr "Fecha/hora de finalización" - -#: components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "La finalización no coincide con un valor esperado" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "Acuerdo de licencia de usuario final" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "Ingresar al menos un filtro de búsqueda para crear un nuevo inventario inteligente" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Ingrese inyectores a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Ingrese entradas a través de la sintaxis JSON o YAML. Consulte la documentación de Ansible Tower para ver la sintaxis de ejemplo." -#: screens/Inventory/shared/SmartInventoryForm.jsx:97 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." msgstr "Ingrese variables de inventario mediante el uso de la sintaxis JSON o YAML. Utilice el botón de selección para alternar entre las dos opciones. Consulte la documentación de Ansible Tower para acceder a ejemplos de sintaxis." -#: screens/Inventory/shared/InventoryForm.jsx:93 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Ingrese variables de inventario mediante el uso de la sintaxis JSON o YAML. Utilice el botón de selección para alternar entre las dos opciones. Consulte la documentación de Ansible Tower para acceder a ejemplos de sintaxis" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "Ingrese una etiqueta de anotación por línea sin comas." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." msgstr "Ingrese un canal de IRC o nombre de usuario por línea. El símbolo numeral (#) para canales y el símbolo arroba (@) para usuarios no son necesarios." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." msgstr "Ingrese un canal de Slack por línea. El símbolo numeral (#) es necesario para los canales." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." msgstr "Ingrese una dirección de correo electrónico por línea para crear una lista de destinatarios para este tipo de notificación." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." msgstr "Ingrese un número de teléfono por línea para especificar dónde enviar los mensajes de SMS." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." msgstr "Ingrese el número asociado con el \"Servicio de mensajería\" en Twilio con el formato +18005550199." -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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 "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>Tower para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>aws_ec2 para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>azure_rm para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>foreman para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>gcp_compute para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>openstack para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>ovirt para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "Introduzca las variables para configurar la fuente de inventario. Consulte <0>Complementos de inventario en la documentación y la guía de configuración del complemento <1>vmware_vm_inventory para obtener una descripción detallada de cómo configurar este complemento." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Ingrese variables con sintaxis JSON o YAML. Use el botón de selección para alternar entre los dos." -#: components/JobList/JobList.jsx:202 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 -#: screens/Job/JobOutput/JobOutput.jsx:703 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "Error" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:415 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/Project/ProjectList/ProjectList.js:289 +msgid "Error fetching updated project" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "Mensaje de error" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:424 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "Cuerpo del mensaje de error" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "Error al guardar el flujo de trabajo" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:51 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: 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:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:232 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: 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:193 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:197 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceList.jsx:230 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: 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: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: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:227 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:235 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:231 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: 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: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: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:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "¡Error!" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "Error:" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:670 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "Evento" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "Detalles del evento" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "Modal de detalles del evento" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "Resumen del evento no disponible." -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "Eventos" -#: components/Search/AdvancedSearch.jsx:167 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "Coincidencia exacta (búsqueda predeterminada si no se especifica)." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: components/Search/AdvancedSearch.js:165 +msgid "Exact search on id field." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "A continuación, se incluyen algunos ejemplos de URL para la fuente de control de GIT:" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "A continuación, se incluyen ejemplos de URL para la fuente de control de archivo remoto:" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "A continuación, se incluyen algunos ejemplos de URL para la fuente de control de subversión:" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "Los ejemplos incluyen:" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "Ejemplos:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "Ejecutar independientemente del estado final del nodo primario." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "Ejecutar cuando el nodo primario se encuentre en estado de error." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "Ejecutar cuando el nodo primario se encuentre en estado correcto." -#: components/AdHocCommands/AdHocCommandsWizard.jsx:85 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:72 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "Entorno de ejecución" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 -#: routeConfig.jsx:140 -#: 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 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 -#: screens/Organization/Organizations.jsx:34 -#: util/getRelatedResourceDeleteDetails.js:87 -#: util/getRelatedResourceDeleteDetails.js:194 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 +msgid "Execution Environment Missing" +msgstr "" + +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 +#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "Entornos de ejecución" -#: screens/Job/JobDetail/JobDetail.jsx:227 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "Nodo de ejecución" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -msgid "Execution environment image" -msgstr "Imagen del entorno de ejecución" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:78 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "Falta el entorno de ejecución o se ha eliminado." -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -msgid "Execution environment name" -msgstr "Nombre del entorno de ejecución" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "No se encontró el entorno de ejecución." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "Salir sin guardar" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "Expandir" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "Expandir la entrada" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "Se esperaba que al menos uno de client_email, project_id o private_key estuviera presente en el archivo." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -msgid "Expiration" -msgstr "Expiración" - -#: 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 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "Expira" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "Fecha de expiración:" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "Fecha de expiración (UTC):" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "Fecha de expiración: {0}" -#: components/JobList/JobListItem.jsx:240 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "Explicación" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "Sistema externo de gestión de claves secretas" -#: components/AdHocCommands/AdHocDetailsStep.jsx:295 -#: components/AdHocCommands/AdHocDetailsStep.jsx:296 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "Variables adicionales" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 -#: screens/Project/ProjectList/ProjectListItem.jsx:76 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "FINALIZADO:" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 +msgid "Fact Storage" +msgstr "" + +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "Eventos" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "Fallido" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "Recuento de hosts fallidos" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "Servidores fallidos" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "Hosts fallidos" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "Tareas fallidas" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "No se pudo aprobar uno o más flujos de trabajo." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "No se pudo aprobar el flujo de trabajo." -#: components/ResourceAccessList/ResourceAccessList.jsx:235 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "No se pudieron asignar correctamente los roles" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js:249 msgid "Failed to associate role" msgstr "No se pudo asociar el rol" -#: screens/Host/HostGroups/HostGroupsList.jsx:249 -#: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "No se pudo asociar." -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "No se pudo cancelar la sincronización de fuentes de inventario" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:181 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "No se pudo cancelar la sincronización de proyectos" -#: components/JobList/JobList.jsx:288 +#: components/JobList/JobList.js:302 msgid "Failed to cancel one or more jobs." msgstr "No se pudo cancelar una o varias tareas." -#: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:390 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "No se pudo cancelar {0}" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "No se pudo copiar la credencial." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "No se pudo copiar el entorno de ejecución" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "No se pudo copiar el inventario." -#: screens/Project/ProjectList/ProjectListItem.jsx:219 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "No se pudo copiar el proyecto." -#: components/TemplateList/TemplateListItem.jsx:212 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "No se pudo copiar la plantilla." -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "No se pudo eliminar la aplicación." -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "No se pudo eliminar la credencial." -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "No se pudo eliminar el grupo {0}." -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "No se pudo eliminar el host." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "No se pudo eliminar la fuente del inventario {name}." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "No se pudo eliminar el inventario." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "No se pudo eliminar la plantilla de trabajo." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:363 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "No se pudo eliminar la notificación." -#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 msgid "Failed to delete one or more applications." msgstr "No se pudo eliminar una o más aplicaciones." -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:212 msgid "Failed to delete one or more credential types." msgstr "No se pudo eliminar uno o más tipos de credenciales." -#: screens/Credential/CredentialList/CredentialList.jsx:200 +#: screens/Credential/CredentialList/CredentialList.js:197 msgid "Failed to delete one or more credentials." msgstr "No se pudo eliminar una o más credenciales." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:225 msgid "Failed to delete one or more execution environments" msgstr "No se pudo eliminar uno o más entornos de ejecución" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "No se pudo eliminar uno o varios grupos." -#: screens/Host/HostList/HostList.jsx:220 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 msgid "Failed to delete one or more hosts." msgstr "No se pudo eliminar uno o más hosts." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 msgid "Failed to delete one or more instance groups." msgstr "No se pudo eliminar uno o más grupos de instancias." -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 msgid "Failed to delete one or more inventories." msgstr "No se pudo eliminar uno o más inventarios." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 +#: screens/Inventory/InventorySources/InventorySourceList.js:260 msgid "Failed to delete one or more inventory sources." msgstr "No se pudo eliminar una o más fuentes de inventario." -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 msgid "Failed to delete one or more job templates." msgstr "No se pudo eliminar una o más plantillas de trabajo." -#: components/JobList/JobList.jsx:277 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "No se pudo eliminar una o más tareas." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 msgid "Failed to delete one or more notification template." msgstr "No se pudo eliminar una o más plantillas de notificación." -#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "No se pudo eliminar una o más organizaciones." -#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "No se pudo eliminar uno o más proyectos." -#: components/Schedule/ScheduleList/ScheduleList.jsx:235 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "No se pudo eliminar una o más programaciones." -#: screens/Team/TeamList/TeamList.jsx:203 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "No se pudo eliminar uno o más equipos." -#: components/TemplateList/TemplateList.jsx:274 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "No se pudo eliminar una o más plantillas." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "No se pudo eliminar uno o más tokens." -#: screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.js:205 msgid "Failed to delete one or more user tokens." msgstr "No se pudo eliminar uno o más tokens de usuario." -#: screens/User/UserList/UserList.jsx:196 +#: screens/User/UserList/UserList.js:193 msgid "Failed to delete one or more users." msgstr "No se pudo eliminar uno o más usuarios." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "No se pudo eliminar una o más aprobaciones del flujo de trabajo." -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:180 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "No se pudo eliminar la organización." -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "No se pudo eliminar el proyecto." -#: components/ResourceAccessList/ResourceAccessList.jsx:246 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "No se pudo eliminar el rol" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "No se pudo eliminar el rol." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "No se pudo eliminar la programación." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "No se pudo eliminar el inventario inteligente." -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "No se pudo eliminar el equipo." -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "No se pudo eliminar el usuario." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "No se pudo eliminar la aprobación del flujo de trabajo." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "No se pudo eliminar la plantilla de trabajo del flujo de trabajo." -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "No se pudo eliminar {nombre}." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "No se pudo denegar una o más aprobaciones del flujo de trabajo." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 msgid "Failed to deny workflow approval." msgstr "No se pudo denegar la aprobación del flujo de trabajo." -#: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "No se pudo disociar uno o más grupos." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "No se pudo disociar uno o más hosts." -#: screens/InstanceGroup/Instances/InstanceList.jsx:235 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "No se pudo disociar una o más instancias." -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "No se pudo disociar uno o más equipos." -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "No se pudo obtener la configuración de inicio de sesión personalizada. En su lugar, se mostrarán los valores predeterminados del sistema." -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:176 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: screens/Project/ProjectList/ProjectList.js:293 +msgid "Failed to fetch the updated project data." +msgstr "" + +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "No se pudo ejecutar la tarea." -#: contexts/Config.jsx:71 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "No se pudo recuperar la configuración." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "No se pudo recuperar el objeto de recurso de nodo completo." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "No se pudieron recuperar las credenciales del nodo." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "No se pudo enviar la notificación de prueba." -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "No se pudo sincronizar la fuente de inventario." -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "No se pudo sincronizar el proyecto." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 msgid "Failed to sync some or all inventory sources." msgstr "No se pudieron sincronizar algunas o todas las fuentes de inventario." -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "No se pudo alternar el host." -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "No se pudo alternar la instancia." -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "No se pudo alternar la notificación." -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "No se pudo alternar la programación." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:233 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "No se pudo actualizar el ajuste de capacidad." -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "No se pudo actualizar la encuesta." -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "Error en el token de usuario." -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "Fallo" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "Falso" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "Febrero" -#: components/Search/AdvancedSearch.jsx:179 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "El campo contiene un valor." -#: components/Search/AdvancedSearch.jsx:203 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "El campo termina con un valor." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Campo para pasar una especificación personalizada de Kubernetes u OpenShift Pod." -#: components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "El campo coincide con la expresión regular dada." -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "El campo comienza con un valor." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "Quinto" -#: screens/Job/JobOutput/JobOutput.jsx:687 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "Diferencias del fichero" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "Se rechazó la carga de archivos. Seleccione un único archivo .json." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "Archivo, directorio o script" -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "Hora de finalización" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "Finalizado" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "Primero" -#: components/AddRole/AddResourceRole.jsx:129 -#: components/AddRole/AddResourceRole.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:132 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: 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:100 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "Nombre" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "Primera ejecución" -#: components/ResourceAccessList/ResourceAccessList.jsx:181 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "Nombre" -#: components/Search/AdvancedSearch.jsx:266 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "Primero, seleccione una clave" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "Ajustar el gráfico al tamaño de la pantalla disponible" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "Decimal corto" -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Follow" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3375,433 +3432,443 @@ msgid "" "executing the playbook." msgstr "Para las plantillas de trabajo, seleccione ejecutar para ejecutar el playbook. Seleccione marcar para marcar solo la sintaxis del manual, probar la configuración del entorno e informar problemas sin ejecutar el playbook." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." msgstr "Para las plantillas de trabajo, seleccione ejecutar para ejecutar el playbook. Seleccione marcar para marcar solo la sintaxis del manual, probar la configuración del entorno e informar problemas sin ejecutar el playbook." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "Para obtener más información, consulte la" -#: components/AdHocCommands/AdHocDetailsStep.jsx:184 -#: components/AdHocCommands/AdHocDetailsStep.jsx:185 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:425 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "Forks" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "Cuarto" -#: components/Schedule/shared/ScheduleForm.jsx:183 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "Información sobre la frecuencia" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 -#: components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 +#: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "La frecuencia no coincide con un valor esperado" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "Vie" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "Viernes" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: components/Search/AdvancedSearch.js:172 +msgid "Fuzzy search on id, name or description fields." +msgstr "" + +#: components/Search/AdvancedSearch.js:159 +msgid "Fuzzy search on name field." +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "Credenciales de Galaxy" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "Las credenciales de Galaxy deben ser propiedad de una organización." -#: screens/Job/JobOutput/JobOutput.jsx:695 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "Obteniendo facts" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "Obtener suscripción" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "Obtener suscripciones" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:145 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "Git" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "GitHub predeterminado" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:63 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "Organización de GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:66 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "Equipo de GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "Organización de GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "Equipo GitHub" -#: screens/Setting/SettingList.jsx:64 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "Configuración de GitHub" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "Entorno de ejecución global predeterminado" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "Disponible globalmente" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "El entorno de ejecución disponible globalmente no puede reasignarse a una organización específica" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "Ir a la primera página" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "Ir a la última página" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "Ir a la página siguiente" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "Ir a la página anterior" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: screens/Setting/SettingList.jsx:68 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "Configuración de Google OAuth 2" -#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "Google OAuth2" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "Grafana" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "Clave API de Grafana" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:117 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "URL de Grafana" -#: components/Search/AdvancedSearch.jsx:227 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "Mayor que la comparación." -#: components/Search/AdvancedSearch.jsx:233 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "Mayor o igual que la comparación." -#: components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "Grupo" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "Detalles del grupo" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "Tipo de grupo" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:232 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 -#: util/getRelatedResourceDeleteDetails.js:125 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 +#: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "Grupos" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:306 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "Cabeceras HTTP" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:301 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "Método HTTP" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "Ayuda" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "Ocultar" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "Ocultar descripción" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "HipChat" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:83 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "Servidor" -#: screens/Job/JobOutput/JobOutput.jsx:682 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "Servidor Async fallido" -#: screens/Job/JobOutput/JobOutput.jsx:681 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "Servidor Async OK" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:642 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "Clave de configuración del servidor" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "Recuento de hosts" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "Detalles del host" -#: screens/Job/JobOutput/JobOutput.jsx:673 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "Servidor fallido" -#: screens/Job/JobOutput/JobOutput.jsx:676 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "Fallo del servidor" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "Filtro de host" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "Nombre de Host" -#: screens/Job/JobOutput/JobOutput.jsx:675 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "Servidor OK" -#: screens/Job/JobOutput/JobOutput.jsx:680 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "Sondeo al servidor" -#: screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "Reintentar servidor" -#: screens/Job/JobOutput/JobOutput.jsx:677 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "Servidor omitido" -#: screens/Job/JobOutput/JobOutput.jsx:674 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "Host iniciado" -#: screens/Job/JobOutput/JobOutput.jsx:678 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "Servidor no alcanzable" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "Detalles del host" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "Modal de detalles del host" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "No se encontró el host." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 msgid "Host status information for this job is unavailable." msgstr "La información de estado del host para esta tarea no se encuentra disponible." -#: routeConfig.jsx:83 -#: 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 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: 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 -#: util/getRelatedResourceDeleteDetails.js:129 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 +#: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "Servidores" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "Hosts disponibles" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "Hosts restantes" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "Hosts utilizados" - -#: components/Schedule/shared/ScheduleForm.jsx:161 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "Hora" -#: components/JobList/JobList.jsx:169 -#: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "ID del panel de control" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "ID de panel" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "ID del panel de control (opcional)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "ID del panel (opcional)" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "Alias en IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "Dirección del servidor IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "Puerto del servidor IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "Alias en IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "Dirección del servidor IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "Contraseña del servidor IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "Puerto del servidor IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:235 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "URL de icono" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" "on the external source." msgstr "Si las opciones están marcadas, se eliminarán todas las variables de los grupos secundarios y se reemplazarán con aquellas que se hallen en la fuente externa." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -3812,434 +3879,466 @@ msgid "" "default group for the inventory." msgstr "Si las opciones están marcadas, cualquier grupo o host que estuvo presente previamente en la fuente externa pero que ahora se eliminó, se eliminará del inventario. Los hosts y grupos que no fueron gestionados por la fuente de inventario serán promovidos al siguiente grupo creado manualmente o, si no existe uno al que puedan ser promovidos, se los dejará en el grupo predeterminado \"Todo\" para el inventario." -#: screens/Template/shared/JobTemplateForm.jsx:559 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." msgstr "Si se habilita esta opción, ejecute este playbook como administrador." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." msgstr "Si se habilita esta opción, muestre los cambios realizados por las tareas de Ansible, donde sea compatible. Esto es equivalente al modo --diff de Ansible." -#: screens/Template/shared/JobTemplateForm.jsx:499 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." msgstr "Si se habilita esta opción, muestre los cambios realizados por las tareas de Ansible, donde sea compatible. Esto es equivalente al modo --diff de Ansible." -#: components/AdHocCommands/AdHocDetailsStep.jsx:205 +#: components/AdHocCommands/AdHocDetailsStep.js:200 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "Si se habilita esta opción, muestre los cambios realizados por las tareas de Ansible, donde sea compatible. Esto es equivalente al modo --diff de Ansible." -#: screens/Template/shared/JobTemplateForm.jsx:603 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "Si se habilita esta opción, se permitirá la ejecución simultánea de esta plantilla de trabajo." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "Si se habilita esta opción, se permitirá la ejecución de esta plantilla de flujo de trabajo en paralelo." -#: screens/Template/shared/JobTemplateForm.jsx:610 +#: screens/Template/shared/JobTemplateForm.js:613 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" "injected into the fact cache at runtime." -msgstr "Si se habilita esta opción, se almacenarán los eventos recopilados para que estén visibles en el nivel de host. Los eventos persisten y\n" +msgstr "" +"Si se habilita esta opción, se almacenarán los eventos recopilados para que estén visibles en el nivel de host. Los eventos persisten y\n" "se insertan en la caché de eventos en tiempo de ejecución." -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:151 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "Si está listo para la actualización o la renovación, <0>contáctenos." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." msgstr "Si no tiene una suscripción, puede visitar Red Hat para obtener una suscripción de prueba." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "Si solo desea eliminar el acceso de este usuario específico, elimínelo del equipo." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" -msgstr "Si desea que la fuente de inventario se actualice al\n" +msgstr "" +"Si desea que la fuente de inventario se actualice al\n" "ejecutar y en la actualización del proyecto, haga clic en Actualizar al ejecutar, y también vaya a" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: 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:99 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "Imagen" -#: screens/Job/JobOutput/JobOutput.jsx:690 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "Incluyendo fichero" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." -msgstr "Indica si un host está disponible y debe ser incluido en la ejecución de\n" +msgstr "" +"Indica si un host está disponible y debe ser incluido en la ejecución de\n" "tareas. Para los hosts que forman parte de un inventario externo, esto se puede\n" "restablecer mediante el proceso de sincronización del inventario." -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "Información" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "Inicializado por" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "Inicializado por" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "Inicializado por (nombre de usuario)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "Configuración del inyector" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "Configuración de entrada" -#: screens/Inventory/shared/InventoryForm.jsx:78 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "Credencial de Insights" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "Insight para Ansible Automation Platform" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Panel de control de Insight para Ansible Automation Platform" -#: components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "ID del sistema de Insights" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "Instancia" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "Filtros de instancias" -#: screens/Job/JobDetail/JobDetail.jsx:230 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "Grupo de instancias" -#: 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: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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "Grupos de instancias" -#: components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "ID de instancia" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "Grupo de instancias" -#: screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "No se encontró el grupo de instancias." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 +msgid "Instance group used capacity" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "Grupos de instancias" -#: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "Instancias" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "Entero" -#: util/validators.jsx:67 +#: util/validators.js:88 msgid "Invalid email address" msgstr "Dirección de correo electrónico no válida" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "Formato de archivo no válido. Cargue un manifiesto de suscripción de Red Hat válido." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "Destino de enlace no válido. No se puede enlazar con nodos secundarios o antecesores. No se admiten los ciclos de gráfico." -#: screens/Login/Login.jsx:135 +#: util/validators.js:33 +msgid "Invalid time format" +msgstr "" + +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "Nombre de usuario o contraseña no válidos. Intente de nuevo." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 -#: util/getRelatedResourceDeleteDetails.js:66 -#: util/getRelatedResourceDeleteDetails.js:208 -#: util/getRelatedResourceDeleteDetails.js:276 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 +#: util/getRelatedResourceDeleteDetails.js:201 +#: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "Inventarios" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "No se pueden copiar los inventarios con fuentes" -#: components/HostForm/HostForm.jsx:30 -#: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:253 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:164 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:47 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "Inventario" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "Inventario (Nombre)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "Archivo de inventario" -#: components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "ID de inventario" -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "Fuente de inventario" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "Sincronización de fuentes de inventario" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:102 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "Error en la sincronización de fuentes de inventario" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: util/getRelatedResourceDeleteDetails.js:73 -#: util/getRelatedResourceDeleteDetails.js:153 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 +#: util/getRelatedResourceDeleteDetails.js:66 +#: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "Fuentes de inventario" -#: components/JobList/JobList.jsx:181 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "Sincronización de inventario" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "Actualización del inventario" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "Archivo de inventario" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "No se encontró el inventario." -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "Sincronización de inventario" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "Errores de sincronización de inventario" -#: screens/Job/JobOutput/JobOutput.jsx:684 +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "Elemento fallido" -#: screens/Job/JobOutput/JobOutput.jsx:683 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "Elemento OK" -#: screens/Job/JobOutput/JobOutput.jsx:685 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "Elemento omitido" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "Elementos" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "Elementos por página" -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:90 -#: screens/Project/ProjectList/ProjectListItem.jsx:69 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "ID DE TAREA:" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "JSON" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "Pestaña JSON" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "JSON:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "Enero" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "Tarea" -#: components/JobList/JobListItem.jsx:96 -#: 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 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "Error en la cancelación de tarea" -#: screens/Job/JobDetail/JobDetail.jsx:410 -#: screens/Job/JobOutput/JobOutput.jsx:852 -#: screens/Job/JobOutput/JobOutput.jsx:853 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "Error en la eliminación de tareas" -#: screens/Job/JobDetail/JobDetail.jsx:243 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "Fracción de tareas" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:479 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "Fraccionamiento de trabajos" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "Estado de la tarea" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:220 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:292 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:520 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "Etiquetas de trabajo" -#: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:199 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:29 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "Plantilla de trabajo" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:40 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "Las credenciales predeterminadas de la plantilla de trabajo se deben reemplazar por una del mismo tipo. Seleccione una credencial de los siguientes tipos para continuar: {0}" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 -#: util/getRelatedResourceDeleteDetails.js:107 -#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:100 +#: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "Plantillas de trabajo" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "Las plantillas de trabajo en las que falta un inventario o un proyecto no pueden seleccionarse al crear o modificar nodos. Seleccione otra plantilla o corrija los campos que faltan para continuar." @@ -4247,696 +4346,694 @@ msgstr "Las plantillas de trabajo en las que falta un inventario o un proyecto n msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Las plantillas de trabajo con credenciales que solicitan contraseñas no pueden seleccionarse al crear o modificar nodos" -#: components/JobList/JobList.jsx:177 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:251 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "Tipo de trabajo" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "Estado de la tarea" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "Pestaña del gráfico de estado de la tarea" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "Plantillas de trabajo" -#: components/JobList/JobList.jsx:160 -#: components/JobList/JobList.jsx:236 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:74 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:73 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:90 -#: screens/Setting/Settings.jsx:72 -#: screens/Template/Template.jsx:164 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "Trabajos" -#: screens/Setting/SettingList.jsx:95 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "Configuración de las tareas" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "Julio" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "Junio" -#: components/Search/AdvancedSearch.jsx:132 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "Clave" -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "Seleccionar clave" -#: components/Search/AdvancedSearch.jsx:126 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "Escritura anticipada de la clave" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "Palabra clave" -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "LDAP" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "LDAP 1" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "LDAP 2" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "LDAP 3" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "LDAP 4" -#: screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "LDAP 5" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "LDAP predeterminado" -#: screens/Setting/SettingList.jsx:72 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "Configuración de LDAP" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "LDAP1" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "LDAP2" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "LDAP3" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "LDAP4" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:173 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "Nombre de la etiqueta" -#: components/JobList/JobListItem.jsx:225 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:187 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:102 -#: components/TemplateList/TemplateListItem.jsx:306 -#: screens/Job/JobDetail/JobDetail.jsx:277 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:392 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "Etiquetas" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "Último" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "Último estado de la tarea" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "Último inicio de sesión" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:282 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:187 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "Último modificado" -#: components/AddRole/AddResourceRole.jsx:133 -#: components/AddRole/AddResourceRole.jsx:147 -#: components/ResourceAccessList/ResourceAccessList.jsx:136 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: 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:106 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "Apellido" -#: components/TemplateList/TemplateList.jsx:222 -#: components/TemplateList/TemplateListItem.jsx:153 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "Último ejecutado" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "Última ejecución" -#: components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "Última tarea" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -msgid "Last job run" -msgstr "Última tarea ejecutada" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "Última modificación" -#: components/ResourceAccessList/ResourceAccessList.jsx:182 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "Apellido" -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "Última utilización" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:106 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "Ejecutar" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "Ejecutar tarea de gestión" -#: components/TemplateList/TemplateListItem.jsx:173 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "Ejecutar plantilla" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "Ejecutar tarea de gestión" -#: components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "Ejecutar plantilla" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "Ejecutar flujo de trabajo" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "Ejecutar | {0}" -#: components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "Ejecutado por" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "Ejecutado por (nombre de usuario)" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "Más información sobre Insights para Ansible Automation Platform" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "Deje este campo en blanco para que el entorno de ejecución esté disponible globalmente." -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "Leyenda" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "Menor que la comparación." -#: components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "Menor o igual que la comparación." -#: components/AdHocCommands/AdHocDetailsStep.jsx:164 -#: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:207 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:76 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:441 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "Límite" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "Enlace a un nodo disponible" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "Cargando" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "Huso horario local" -#: components/Schedule/shared/ScheduleForm.jsx:138 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "Huso horario local" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "Iniciar sesión" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -msgid "Log aggregator test sent successfully." -msgstr "Se envió correctamente la prueba del agregador de registros." - -#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "Registros" -#: screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "Configuración del registro" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:166 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "Finalización de la sesión" -#: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "Modal de búsqueda" -#: components/Search/AdvancedSearch.jsx:150 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "Selección de búsqueda" -#: components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "Tipo de búsqueda" -#: components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "Escritura anticipada de la búsqueda" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 -#: screens/Project/ProjectList/ProjectListItem.jsx:67 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "ÚLTIMA SINCRONIZACIÓN" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:249 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "Credenciales de máquina" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:98 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "Credenciales de máquina" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -msgid "Managed by Tower" -msgstr "Gestionado por Tower" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 +msgid "Managed" +msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "Nodos gestionados" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:37 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "Trabajo de gestión" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "Trabajos de gestión" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "Tarea de gestión" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "Error de ejecución de la tarea de gestión" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "No se encontró la tarea de gestión." -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "Tareas de gestión" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:76 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: 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:144 -#: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "Manual" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "Marzo" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "Mattermost" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "Número máximo de hosts" -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "Máximo" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "Longitud máxima" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "Mayo" -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "Miembros" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "Metadatos" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "Métrica" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "Métrica" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "Mínimo" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "Longitud mínima" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:33 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "Cantidad mínima de instancias que se asignará automáticamente a este grupo cuando aparezcan nuevas instancias en línea." -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:43 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "Porcentaje mínimo de todas las instancias que se asignará automáticamente a este grupo cuando aparezcan nuevas instancias en línea." -#: components/Schedule/shared/ScheduleForm.jsx:160 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "Minuto" -#: screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.js:96 +msgid "Miscellaneous Authentication" +msgstr "" + +#: screens/Setting/SettingList.js:106 +msgid "Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "Sistemas varios" -#: screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "Configuración de sistemas varios" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "No encontrado" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:75 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "Recurso no encontrado" -#: components/Lookup/HostFilterLookup.jsx:357 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 -#: screens/User/UserTokenList/UserTokenList.jsx:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "Modificado" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:162 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:212 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:141 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 -#: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:155 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: 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:144 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "Modificado por (nombre de usuario)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "Modificado por (nombre de usuario)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "Módulo" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "Lun" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "Lunes" -#: components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "Mes" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "Más información" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "Más información para" -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "Selección múltiple" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "Selección múltiple" -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "Opciones de selección múltiple" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "Selección múltiple" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "Opciones de selección múltiple" -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:153 -#: components/AddRole/AddResourceRole.jsx:169 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: 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: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: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: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:161 -#: components/Schedule/ScheduleList/ScheduleList.jsx:181 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:187 -#: components/TemplateList/TemplateList.jsx:220 -#: components/TemplateList/TemplateListItem.jsx:126 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -4949,304 +5046,329 @@ msgstr "Opciones de selección múltiple" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: 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:128 -#: screens/Credential/CredentialList/CredentialList.jsx:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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: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: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:91 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupsList.jsx:158 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: 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:240 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: 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: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:49 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: 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:143 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: 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: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:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:131 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:168 -#: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx: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:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: 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:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "Nombre" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "Navegación" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "Nunca" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "Nunca actualizado" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "No expira nunca" -#: components/JobList/JobList.jsx:196 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "Nuevo" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:80 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:135 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "Siguiente" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:163 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "Siguiente ejecución" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:262 msgid "No" msgstr "No" -#: screens/Job/JobOutput/JobOutput.jsx:691 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "Ningún servidor corresponde" -#: screens/Job/JobOutput/JobOutput.jsx:679 -#: screens/Job/JobOutput/JobOutput.jsx:692 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "No más servidores" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "No hay ningún JSON disponible" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "No hay tareas" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "No hay ningún error estándar disponible" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "No hay ninguna salida estándar disponible" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "No hay errores de sincronización de inventario." -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "No se encontraron elementos." -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "No se encontraron resultados" -#: components/Search/AdvancedSearch.jsx:100 -#: components/Search/AdvancedSearch.jsx:136 -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "No se encontraron resultados" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "No se encontraron suscripciones" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "No se encontraron preguntas de la encuesta." -#: components/PaginatedDataList/PaginatedDataList.jsx:88 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "No se encontraron {pluralizedItemName}" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "Tipo de nodo" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "Tipo de nodo" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "Ninguno" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "Ninguno (se ejecuta una vez)" -#: components/Schedule/shared/ScheduleForm.jsx:159 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "Ninguno (se ejecuta una vez)" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:28 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "Usuario normal" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "No encontrado" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "No configurado" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "No configurado para la sincronización de inventario." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." msgstr "Tenga en cuenta que solo se pueden disociar los hosts asociados directamente a este grupo. Los hosts en subgrupos deben ser disociados del nivel de subgrupo al que pertenecen." -#: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 msgid "" "Note that you may still see the group in the list after\n" "disassociating if the host is also a member of that group’s\n" "children. This list shows all groups the host is associated\n" "with directly and indirectly." -msgstr "Tenga en cuenta que puede seguir viendo el grupo en la lista después de la disociación si el host también es un miembro de los elementos secundarios de ese grupo. Esta lista muestra todos los grupos a los que está asociado el host\n" +msgstr "" +"Tenga en cuenta que puede seguir viendo el grupo en la lista después de la disociación si el host también es un miembro de los elementos secundarios de ese grupo. Esta lista muestra todos los grupos a los que está asociado el host\n" "directa e indirectamente." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "Nota: Este campo asume que el nombre remoto es \"origin\"." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -5256,324 +5378,319 @@ msgid "" "password information." msgstr "Note: Si utiliza el protocolo SSH para GitHub o Bitbucket, ingrese solo la clave de SSH; no ingrese un nombre de usuario (distinto de git). Además, GitHub y Bitbucket no admiten la autenticación de contraseña cuando se utiliza SSH. El protocolo de solo lectura de GIT (git://) no utiliza información de nombre de usuario o contraseña." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "Color de notificación" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "No se encontró ninguna plantilla de notificación." -#: 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 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 +#: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "Plantillas de notificación" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "Tipo de notificación" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "Color de la notificación" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "Notificación enviada correctamente" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "Caducó el tiempo de la notificación" -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "Tipo de notificación" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:150 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "Notificación" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "Noviembre" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "OK" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "Ocurrencias" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "Octubre" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "Off" -#: components/AdHocCommands/AdHocDetailsStep.jsx:212 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "On" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "Con error" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "Con éxito" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "En la fecha" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "En los días" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "Agrupar solo por" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "Detalles de la opción" -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." msgstr "Etiquetas opcionales que describen esta plantilla de trabajo, como 'dev' o 'test'. Las etiquetas se pueden usar para agrupar y filtrar plantillas de trabajo y tareas completadas." -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "Opcionalmente, seleccione la credencial que se usará para devolver las actualizaciones de estado al servicio de Webhook." -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:165 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:167 -#: components/PromptDetail/PromptProjectDetail.jsx:93 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:552 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "Opciones" -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:98 -#: components/PromptDetail/PromptProjectDetail.jsx:57 -#: components/PromptDetail/PromptProjectDetail.jsx:67 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: components/TemplateList/TemplateListItem.jsx:240 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: 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:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:55 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:135 -#: screens/Project/ProjectList/ProjectListItem.jsx:236 -#: screens/Project/ProjectList/ProjectListItem.jsx:247 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: 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:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "Organización" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "Organización (Nombre)" -#: screens/Team/TeamList/TeamList.jsx:133 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "Nombre de la organización" -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "No se encontró la organización." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: 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 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 -#: util/getRelatedResourceDeleteDetails.js:238 -#: util/getRelatedResourceDeleteDetails.js:272 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 +#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "Organizaciones" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "Otros avisos" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "No cumple con los requisitos" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "Salida" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "Anular" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -msgid "Overwrite Variables" -msgstr "Anular variables" +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 +msgid "Overwrite local groups and hosts from remote inventory source" +msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 +msgid "Overwrite local variables from remote inventory source" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "Anular variables" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "PUBLICAR" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "COLOCAR" -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "Pagerduty" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:206 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "Subdominio Pagerduty" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "Subdominio Pagerduty" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "Paginación" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "Desplazar hacia abajo" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "Desplazar hacia la izquierda" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "Desplazar hacia la derecha" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "Desplazar hacia arriba" -#: components/AdHocCommands/AdHocDetailsStep.jsx:266 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "Trasladar cambios adicionales en la línea de comandos. Hay dos parámetros de línea de comandos de Ansible:" -#: screens/Template/shared/JobTemplateForm.jsx:414 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5581,312 +5698,320 @@ msgid "" "documentation for example syntax." msgstr "Traslade variables de línea de comando adicionales al playbook. Este es el parámetro de línea de comando -e o --extra-vars para el playbook de Ansible. Proporcione pares de claves/valores utilizando YAML o JSON. Consulte la documentación para ver ejemplos de sintaxis." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "Traslade variables de línea de comando adicionales al cuaderno de estrategias. Este es el parámetro de línea de comando -e o --extra-vars para el cuaderno de estrategias de Ansible. Proporcione pares de claves/valores utilizando YAML o JSON. Consulte la documentación de Ansible Tower para ver ejemplos de sintaxis." -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: 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:76 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "Contraseña" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "Últimas 24 horas" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "Mes pasado" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "Últimas dos semanas" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "Semana pasada" -#: components/JobList/JobList.jsx:197 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "Pendiente" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "Aprobaciones de flujos de trabajo pendientes" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "Eliminación pendiente" -#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "Realice una búsqueda para definir un filtro de host" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -msgid "Personal access token" -msgstr "Token de acceso personal" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "Jugada" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "Recuento de jugadas" -#: screens/Job/JobOutput/JobOutput.jsx:696 +#: screens/Job/JobOutput/JobOutput.js:768 msgid "Play Started" msgstr "Jugada iniciada" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: screens/Job/JobDetail/JobDetail.jsx:220 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:355 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "Playbook" -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "Comprobación del playbook" -#: screens/Job/JobOutput/JobOutput.jsx:697 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "Playbook terminado" -#: components/PromptDetail/PromptProjectDetail.jsx:103 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:179 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:85 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "Directorio de playbook" -#: components/JobList/JobList.jsx:182 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "Ejecución de playbook" -#: screens/Job/JobOutput/JobOutput.jsx:688 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "Playbook iniciado" -#: components/TemplateList/TemplateList.jsx:204 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "Nombre del playbook" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "Ejecución de playbook" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "Jugadas" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "Agregue preguntas de la encuesta." -#: components/PaginatedDataList/PaginatedDataList.jsx:87 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Agregue {pluralizedItemName} para completar esta lista" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "Haga clic en el botón de inicio para comenzar." -#: util/validators.jsx:116 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "Introduzca una URL válida." -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "Por favor introduzca un valor." -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "Inicie sesión" -#: components/Schedule/shared/ScheduleForm.jsx:575 +#: components/Schedule/shared/ScheduleForm.js:568 msgid "Please select a day number between 1 and 31." msgstr "Seleccione un número de día entre 1 y 31." -#: screens/Template/shared/JobTemplateForm.jsx:170 +#: screens/Template/shared/JobTemplateForm.js:173 msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "Seleccione un inventario o marque la opción Preguntar al ejecutar." -#: components/Schedule/shared/ScheduleForm.jsx:567 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "Seleccione una fecha/hora de finalización que sea posterior a la fecha/hora de inicio." -#: components/Lookup/HostFilterLookup.jsx:297 +#: components/Lookup/HostFilterLookup.js:328 msgid "Please select an organization before editing the host filter" msgstr "Seleccione una organización antes de modificar el filtro del host" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "Anulación de las especificaciones del pod" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "Mínimo de instancias de políticas" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:38 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "Porcentaje de instancias de políticas" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "Completar el campo desde un sistema externo de gestión de claves secretas" -#: components/Lookup/HostFilterLookup.jsx:287 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" "Refer to the documentation for further syntax and\n" "examples. Refer to the Ansible Tower documentation for further syntax and\n" "examples." -msgstr "Complete los hosts para este inventario utilizando un filtro de búsqueda\n" +msgstr "" +"Complete los hosts para este inventario utilizando un filtro de búsqueda\n" "de búsqueda. Ejemplo: ansible_facts.ansible_distribution: \"RedHat\".\n" "Consulte la documentación para obtener más sintaxis y\n" "ejemplos. Consulte la documentación de Ansible Tower para obtener más sintaxis y\n" "ejemplos." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:98 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "Puerto" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Condiciones previas para ejecutar este nodo cuando hay varios elementos primarios. Consulte" -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -msgid "Press 'Enter' to add more answer choices. One answer choice per line." -msgstr "Presione 'Enter' para agregar más opciones de respuesta. Una opción de respuesta por línea." +#: screens/Template/Survey/MultipleChoiceField.js:64 +msgid "" +"Press 'Enter' to add more answer choices. One answer\n" +"choice per line." +msgstr "" -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "Presione Enter para modificar. Presione ESC para detener la edición." -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "Vista previa" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "Frase de paso para llave privada" -#: screens/Template/shared/JobTemplateForm.jsx:558 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "Elevación de privilegios" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "Contraseña para la elevación de privilegios" -#: components/JobList/JobListItem.jsx:196 -#: 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 -#: components/TemplateList/TemplateListItem.jsx:268 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:213 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "Proyecto" -#: components/PromptDetail/PromptProjectDetail.jsx:100 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:176 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:63 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "Ruta base del proyecto" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "Sincronización del proyecto" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "Error en la sincronización del proyecto" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "Actualización del proyecto" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "No se encontró el proyecto." -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "Errores de sincronización del proyecto" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: 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 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 -#: util/getRelatedResourceDeleteDetails.js:201 -#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:194 +#: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "Proyectos" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "Promover grupos secundarios y hosts" -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:628 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "Aviso" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "Anulaciones de avisos" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "Preguntar al ejecutar" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "Aviso | {0}" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "Valores solicitados" -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -5894,7 +6019,7 @@ msgid "" "documentation for more information and examples on patterns." msgstr "Proporcione un patrón de host para limitar aun más la lista de hosts que serán gestionados o que se verán afectados por el playbook. Se permiten distintos patrones. Consulte la documentación de Ansible para obtener más información y ejemplos relacionados con los patrones." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -5902,18 +6027,19 @@ msgid "" "information and examples on patterns." msgstr "Proporcione un patrón de host para limitar aun más la lista de hosts que serán gestionados o que se verán afectados por el playbook. Se permiten distintos patrones. Consulte la documentación de Ansible para obtener más información y ejemplos relacionados con los patrones." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:159 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "Proporcione un valor para este campo o seleccione la opción Preguntar al ejecutar." -#: components/AdHocCommands/AdHocDetailsStep.jsx:270 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." -msgstr "Proporcione pares de clave/valor utilizando\n" +msgstr "" +"Proporcione pares de clave/valor utilizando\n" "YAML o JSON." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -5921,788 +6047,818 @@ msgid "" "retrieving renewal or expanded subscriptions." msgstr "A continuación, proporcione sus credenciales de Red Hat o de Red Hat Satellite para poder elegir de una lista de sus suscripciones disponibles. Las credenciales que utilice se almacenarán para su uso futuro en la recuperación de las suscripciones de renovación o ampliadas." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "Proporcione sus credenciales de Red Hat o Red Hat Satellite para habilitar Insights para Ansible Automation Platform." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:629 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "Dirección URL para las llamadas callback" -#: screens/Template/shared/JobTemplateForm.jsx:624 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "Detalles de callback de aprovisionamiento" -#: screens/Template/shared/JobTemplateForm.jsx:563 -#: screens/Template/shared/JobTemplateForm.jsx:566 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "Callbacks de aprovisionamiento" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "Extraer" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "Pregunta" -#: screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "RADIUS" -#: screens/Setting/SettingList.jsx:76 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "Configuración de RADIUS" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:201 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "Lectura" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "Tareas recientes" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "Pestaña de la lista de tareas recientes" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "Plantillas recientes" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "Pestaña de la lista de plantillas recientes" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:88 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 +msgid "Recent jobs" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "Lista de destinatarios" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "Lista de destinatarios" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:148 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "Virtualización de Red Hat" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "Manifiesto de suscripción de Red Hat" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "Redirigir URI" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "Redirigir URI" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "Redirigir al panel de control" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "Redirigir al detalle de la suscripción" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "Consulte" -#: screens/Template/shared/JobTemplateForm.jsx:434 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." msgstr "Consulte la documentación de Ansible para obtener detalles sobre el archivo de configuración." -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "Actualizar token" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "Actualizar expiración del token" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: screens/Project/ProjectList/ProjectListItem.js:130 +msgid "Refresh for revision" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:132 +msgid "Refresh project revision" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "Regiones" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "Credencial de registro" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Expresión regular en la que solo se importarán los nombres de host que coincidan. El filtro se aplica como un paso posterior al procesamiento después de que se aplique cualquier filtro de complemento de inventario." -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "Grupos relacionados" -#: components/JobList/JobListItem.jsx:129 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:369 -#: screens/Job/JobDetail/JobDetail.jsx:377 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 +msgid "Related search type" +msgstr "" + +#: components/Search/AdvancedSearch.js:146 +msgid "Related search type typeahead" +msgstr "" + +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "Relanzar" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "Volver a ejecutar la tarea" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "Volver a ejecutar todos los hosts" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "Volver a ejecutar hosts fallidos" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "Volver a ejecutar el" -#: components/JobList/JobListItem.jsx:109 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "Relanzar utilizando los parámetros de host" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:147 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "Archivo remoto" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "Eliminar" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "Quitar todos los nodos" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "Quitar enlace" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "Quitar nodo" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "Eliminar cualquier modificación local antes de realizar una actualización." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "Quitar acceso de {0}" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "Quitar chip de {0}" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "Si quita este enlace, el resto de la rama quedará huérfano y hará que se ejecute inmediatamente en el lanzamiento." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "Frecuencia de repetición" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "Reemplazar" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:50 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "Reemplazar el campo con un valor nuevo" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "Solicitar subscripción" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "Obligatorio" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "Nombre del recurso" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "Recurso eliminado" -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "Recursos" -#: components/TemplateList/TemplateListItem.jsx:133 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "Faltan recursos de esta plantilla." -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "Restaurar el valor inicial." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Recuperar el estado habilitado a partir del dict dado de las variables de host. La variable habilitada se puede especificar mediante notación de puntos, por ejemplo: \"foo.bar\"" -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:837 -#: screens/Job/JobOutput/JobOutput.jsx:840 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "Volver" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "Volver a la gestión de suscripciones." -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "Muestra los resultados que tienen valores distintos a éste y otros filtros." -#: components/Search/AdvancedSearch.jsx:106 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "Muestra los resultados que cumple con este y otros filtros. Este es el tipo de conjunto predeterminado si no se selecciona nada." -#: components/Search/AdvancedSearch.jsx:112 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "Muestra los resultados que cumplen con este o cualquier otro filtro." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "Revertir" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "Revertir todo" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "Revertir todo a valores por defecto" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:49 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "Revertir el campo al valor guardado anteriormente" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "Revertir configuración" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "Revertir a los valores predeterminados de fábrica." -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:171 -#: screens/Project/ProjectList/ProjectListItem.jsx:156 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "Revisión" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "Revisión n°" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: 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:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "Rol" -#: components/ResourceAccessList/ResourceAccessList.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:156 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "Roles" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "Ejecutar" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "Ejecutar comando" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:123 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "Ejecutar comando" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "Ejecutar cada" -#: components/Schedule/shared/ScheduleForm.jsx:154 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "Frecuencia de ejecución" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "Ejecutar el" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "Tipo de ejecución" -#: components/JobList/JobList.jsx:199 -#: components/TemplateList/TemplateListItem.jsx:105 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "Ejecutándose" -#: screens/Job/JobOutput/JobOutput.jsx:689 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "Handlers ejecutándose" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "Tareas en ejecución" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:170 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "Tareas en ejecución" -#: screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "SAML" -#: screens/Setting/SettingList.jsx:80 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "Configuración de SAML" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "Actualización de SCM" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "SOCIAL" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "Contraseña de SSH" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "Conexión SSL" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "INICIAR" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:93 -#: screens/Project/ProjectList/ProjectListItem.jsx:72 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "ESTADO:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "Sáb" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "Sábado" -#: components/AddRole/AddResourceRole.jsx:265 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:611 -#: components/Schedule/shared/ScheduleForm.jsx:617 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "Guardar" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "Guardar y salir" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:232 -msgid "Save and enable log aggregation before testing the log aggregator." -msgstr "Guarde y habilite la agregación de registros antes de probar el agregador de registros." - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "Guardar los cambios del enlace" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "Guardado correctamente" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "Detalles de la programación" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "Detalles de la programación" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "La programación está activa" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "La programación está inactiva" -#: components/Schedule/shared/ScheduleForm.jsx:531 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "Falta una regla de programación" -#: components/Schedule/ScheduleList/ScheduleList.jsx:222 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:157 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "Programaciones" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:126 -#: screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "Ámbito" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "Desplazarse hasta el primero" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "Desplazarse hasta el final" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "Desplazarse hasta el siguiente" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "Desplazarse hasta el anterior" -#: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "Buscar" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "La búsqueda se desactiva durante la ejecución de la tarea" -#: components/Search/AdvancedSearch.jsx:275 -#: components/Search/Search.jsx:286 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "Botón de envío de la búsqueda" -#: components/Search/Search.jsx:275 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "Entrada de texto de búsqueda" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "Segundo" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: components/PromptDetail/PromptProjectDetail.jsx:96 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "Segundos" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "Ver errores a la izquierda" -#: components/JobList/JobListItem.jsx:68 -#: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "Seleccionar" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "Seleccionar tipo de credencial" -#: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "Seleccionar grupos" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "Seleccionar hosts" -#: components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "Seleccionar entrada" -#: screens/InstanceGroup/Instances/InstanceList.jsx:221 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "Seleccionar instancias" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "Seleccionar elementos" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "Seleccionar elementos de la lista" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "Seleccionar etiquetas" -#: components/AddRole/AddResourceRole.jsx:254 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "Seleccionar los roles para aplicar" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "Seleccionar equipos" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "Seleccione una clave de cuenta de servicio con formato JSON para autocompletar los siguientes campos." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "Seleccionar un tipo de nodo" -#: components/AddRole/AddResourceRole.jsx:190 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "Seleccionar un tipo de recurso" -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." msgstr "Seleccione una rama para la plantilla de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que indican una rama." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "Seleccione una rama para el flujo de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que indican una rama." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Seleccione una rama para el flujo de trabajo. Esta rama se aplica a todos los nodos de la plantilla de trabajo que indican una rama." -#: screens/Credential/shared/CredentialForm.jsx:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "Seleccionar un tipo de credencial" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "Seleccionar una instancia" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "Seleccionar una tarea para cancelar" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "Seleccionar una métrica" -#: components/AdHocCommands/AdHocDetailsStep.jsx:79 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "Seleccionar un módulo" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "Seleccionar un playbook" -#: screens/Template/shared/JobTemplateForm.jsx:323 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "Seleccione un proyecto antes de modificar el entorno de ejecución." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "Seleccionar una fila para aprobar" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "Seleccionar una fila para eliminar" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "Seleccionar una fila para denegar" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "Seleccionar una fila para disociar" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "Seleccionar una suscripción" -#: components/Schedule/shared/ScheduleForm.jsx:84 -msgid "Select a valid date and time for this field" -msgstr "Seleccionar una fecha y hora válidas para este campo" - -#: components/HostForm/HostForm.jsx:54 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: components/Schedule/shared/ScheduleForm.jsx:88 -#: components/Schedule/shared/ScheduleForm.jsx:92 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: 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:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 -#: screens/User/shared/UserForm.jsx:119 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "Seleccionar un valor para este campo" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "Seleccione un servicio de webhook." -#: components/DataListToolbar/DataListToolbar.jsx:73 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "Seleccionar todo" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "Seleccionar un tipo de actividad" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 msgid "Select an instance and a metric to show chart" msgstr "Seleccionar una instancia y una métrica para mostrar el gráfico" -#: 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 "Seleccione un inventario para el flujo de trabajo. Este inventario se aplica a todos los nodos de la plantilla de trabajo que indican un inventario." +#: screens/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." +msgstr "" -#: screens/Project/shared/ProjectForm.jsx:204 +#: components/LaunchPrompt/steps/SurveyStep.js:128 +msgid "Select an option" +msgstr "" + +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "Seleccione una organización antes de modificar el entorno de ejecución predeterminado." -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -6711,328 +6867,334 @@ msgid "" "credential(s) become the defaults that can be updated at run time." msgstr "Seleccione las credenciales para acceder a los nodos en función de los cuales se ejecutará este trabajo. Solo puede seleccionar una credencial de cada tipo. Para las credenciales de máquina (SSH), si marca \"Preguntar al ejecutar\" sin seleccionar las credenciales, se le pedirá que seleccione una credencial de máquina en el momento de la ejecución. Si selecciona las credenciales y marca \"Preguntar al ejecutar\", las credenciales seleccionadas se convierten en las credenciales predeterminadas que pueden actualizarse en tiempo de ejecución." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:88 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." -msgstr "Seleccione de la lista de directorios que se encuentran en\n" +msgstr "" +"Seleccione de la lista de directorios que se encuentran en\n" "la ruta base del proyecto. La ruta base y el directorio del playbook\n" "proporcionan la ruta completa utilizada para encontrar los playbooks." -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "Seleccionar elementos de la lista" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "Seleccionar el tipo de tarea" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: components/LaunchPrompt/steps/SurveyStep.js:174 +msgid "Select option(s)" +msgstr "" + +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "Seleccionar periodo" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "Seleccionar los roles para aplicar" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132 msgid "Select source path" msgstr "Seleccionar la ruta de origen" -#: screens/Dashboard/DashboardGraph.jsx:148 -#: screens/Dashboard/DashboardGraph.jsx:149 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "Seleccionar estado" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "Seleccionar etiquetas" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "Seleccione el entorno de ejecución en el que desea que se ejecute este comando." -#: screens/Inventory/shared/SmartInventoryForm.jsx:90 +#: screens/Inventory/shared/SmartInventoryForm.js:89 msgid "Select the Instance Groups for this Inventory to run on." msgstr "Seleccione los grupos de instancias en los que se ejecutará este inventario." -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "Seleccione los grupos de instancias en los que se ejecutará esta organización." -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "Seleccione los grupos de instancias en los que se ejecutará esta organización." -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "Seleccione la aplicación a la que pertenecerá este token." -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "Seleccione la credencial que desea utilizar cuando acceda a los hosts remotos para ejecutar el comando. Elija una credencial que contenga el nombre de usuario y la clave SSH o la contraseña que Ansible necesitará para iniciar sesión en los hosts remotos." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 -msgid "Select the default execution environment for this organization to run on." -msgstr "Seleccione el entorno de ejecución predeterminado en el que se ejecutará esta organización." - -#: screens/Template/shared/JobTemplateForm.jsx:322 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "Seleccione el entorno de ejecución para esta plantilla de trabajo." -#: components/Lookup/InventoryLookup.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:286 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." msgstr "Seleccione el inventario que contenga los hosts que desea que gestione esta tarea." -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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 "Seleccione el archivo del inventario que sincronizará esta fuente. Puede seleccionar del menú desplegable o ingresar un archivo en la entrada." -#: components/HostForm/HostForm.jsx:33 -#: components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "Seleccione el inventario al que pertenecerá este host." -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: screens/Template/shared/JobTemplateForm.js:361 msgid "Select the playbook to be executed by this job." msgstr "Seleccionar el playbook a ser ejecutado por este trabajo." -#: screens/Template/shared/JobTemplateForm.jsx:301 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "Seleccione el proyecto que contiene el playbook que desea que ejecute esta tarea." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "Seleccione su suscripción a Ansible Automation Platform para utilizarla." -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "Seleccionar {0}" -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:260 -#: components/AddRole/SelectRoleStep.jsx:27 -#: 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:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "Seleccionado" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "Categoría seleccionada" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:233 -msgid "Send a test log message to the configured log aggregator." -msgstr "Envíe un mensaje de registro de prueba al agregador de registros configurado." - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:93 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "Dirección de correo del remitente" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "Correo electrónico del remitente" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "Septiembre" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "Archivo JSON de la cuenta de servicio" -#: screens/Inventory/shared/InventorySourceForm.jsx:53 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "Establecer un valor para este campo" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "Establecer cuántos días de datos debería ser retenidos." -#: screens/Setting/SettingList.jsx:121 +#: screens/Setting/SettingList.js:117 msgid "Set preferences for data collection, logos, and logins" msgstr "Establezca preferencias para la recopilación de datos, los logotipos y los inicios de sesión" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "Establecer la ruta de origen en" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "Establecer la instancia en línea o fuera de línea. Si está fuera de línea, las tareas no se asignarán a esta instancia." -#: screens/Application/shared/ApplicationForm.jsx:129 +#: screens/Application/shared/ApplicationForm.js:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "Establecer como Público o Confidencial según cuán seguro sea el dispositivo del cliente." -#: components/Search/AdvancedSearch.jsx:98 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "Establecer tipo" -#: components/Search/AdvancedSearch.jsx:89 +#: components/Search/AdvancedSearch.js:298 +msgid "Set type disabled for related search field fuzzy searches" +msgstr "" + +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "Establecer selección del tipo" -#: components/Search/AdvancedSearch.jsx:92 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "Establecer escritura anticipada del tipo" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "Establecer zoom al 100% y centrar el gráfico" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "Categoría de la configuración" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "La configuración coincide con los valores predeterminados de fábrica." -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "Nombre de la configuración" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "Ajustes" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "Mostrar" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:496 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "Mostrar cambios" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "Mostrar todos los grupos" -#: components/AdHocCommands/AdHocDetailsStep.jsx:201 -#: components/AdHocCommands/AdHocDetailsStep.jsx:202 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "Mostrar cambios" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "Mostrar descripción" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "Mostrar menos" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "Mostrar solo los grupos raíz" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "Iniciar sesión con Azure AD" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "Iniciar sesión con GitHub" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "Iniciar sesión con GitHub Enterprise" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "Iniciar sesión con organizaciones GitHub Enterprise" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "Iniciar sesión con equipos de GitHub Enterprise" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "Iniciar sesión con las organizaciones GitHub" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "Iniciar sesión con equipos GitHub" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "Iniciar sesión con Google" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "Iniciar sesión con SAML" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "Iniciar sesión con SAML {samlIDP}" -#: components/Search/Search.jsx:177 -#: components/Search/Search.jsx:178 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "Selección de clave simple" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:235 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:310 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:536 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "Omitir etiquetas" -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7041,7 +7203,7 @@ msgid "" "of tags." msgstr "La omisión de etiquetas resulta útil cuando tiene un playbook de gran tamaño y desea omitir partes específicas de la tarea o la jugada. Utilice comas para separar las distintas etiquetas. Consulte la documentación para obtener información detallada sobre el uso de etiquetas." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -7049,265 +7211,271 @@ msgid "" "documentation for details on the usage of tags." msgstr "La omisión de etiquetas resulta útil cuando tiene un playbook de gran tamaño y desea omitir partes específicas de la tarea o la jugada. Utilice comas para separar las distintas etiquetas. Consulte la documentación de Ansible Tower para obtener información detallada sobre el uso de etiquetas." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "Omitido" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "Slack" -#: screens/Host/HostList/SmartInventoryButton.jsx:19 -#: screens/Host/HostList/SmartInventoryButton.jsx:38 -#: screens/Host/HostList/SmartInventoryButton.jsx:42 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "Inventario inteligente" -#: screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "No se encontró el inventario inteligente." -#: components/Lookup/HostFilterLookup.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "Filtro de host inteligente" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "Inventario inteligente" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "Algunos de los pasos anteriores tienen errores" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Host/HostList/SmartInventoryButton.js:12 +msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "Se produjo un error al solicitar probar esta credencial y los metadatos." -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "Se produjo un error..." -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "Ordenar" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "Ordenar las preguntas" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:84 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "Fuente" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:130 -#: components/PromptDetail/PromptProjectDetail.jsx:79 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:75 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:332 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "Rama de fuente de control" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" msgstr "Rama/etiqueta/commit de fuente de control" -#: components/PromptDetail/PromptProjectDetail.jsx:83 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "Credencial de fuente de control" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "Tipo de credencial de fuente de control" -#: components/PromptDetail/PromptProjectDetail.jsx:80 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:151 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "Refspec de fuente de control" -#: components/PromptDetail/PromptProjectDetail.jsx:75 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:146 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 +msgid "Source Control Revision" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "Tipo de fuente de control" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "URL de fuente de control" -#: components/JobList/JobList.jsx:180 -#: components/JobList/JobListItem.jsx:33 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "Actualización de fuente de control" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "Número de teléfono de la fuente" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:168 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "Variables de fuente" -#: components/JobList/JobListItem.jsx:170 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "Tarea del flujo de trabajo de origen" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "Rama de fuente de control" -#: screens/Inventory/shared/InventorySourceForm.jsx:160 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "Detalles de la fuente" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "Número de teléfono de la fuente" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:249 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "Variables de fuente" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "Extraído de un proyecto" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "Fuentes" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." msgstr "Especifique los encabezados HTTP en formato JSON. Consulte la documentación de Ansible Tower para obtener ejemplos de sintaxis." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." msgstr "Especifique un color para la notificación. Los colores aceptables son el código de color hexadecimal (ejemplo: #3af o #789abc)." -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "Especifique un alcance para el acceso al token" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "Especificar las condiciones en las que debe ejecutarse este nodo" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "Error estándar" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "Salida estándar" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "Pestaña de error estándar" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "Pestaña de salida estándar" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "Iniciar" -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:83 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "Hora de inicio" -#: components/Schedule/shared/ScheduleForm.jsx:120 -msgid "Start date/time" -msgstr "Fecha/hora de inicio" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "Iniciar mensaje" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:388 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "Iniciar cuerpo del mensaje" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "Iniciar proceso de sincronización" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "Iniciar fuente de sincronización" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "Iniciado" -#: components/JobList/JobList.jsx:193 -#: components/JobList/JobList.jsx:214 -#: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "Estado" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "Enviar" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7315,193 +7483,199 @@ msgid "" "the revision specified by the main project.\n" "This is equivalent to specifying the --remote\n" "flag to git submodule update." -msgstr "Los submódulos realizarán el seguimiento del último commit en\n" +msgstr "" +"Los submódulos realizarán el seguimiento del último commit en\n" "su rama maestra (u otra rama especificada en\n" ".gitmodules). De lo contrario, el proyecto principal mantendrá los submódulos en\n" "la revisión especificada.\n" "Esto es equivalente a especificar el indicador --remote para la actualización del submódulo Git." -#: screens/Setting/SettingList.jsx:131 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "Subscripción" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "Detalles de la suscripción" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "Administración de suscripciones" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "Manifiesto de suscripción" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "Modal de selección de suscripción" -#: screens/Setting/SettingList.jsx:136 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "Configuración de la suscripción" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "Tipo de suscripción" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "Tabla de suscripciones" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "Subversion" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "Correcto" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:397 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "Mensaje de éxito" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:406 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "Cuerpo del mensaje de éxito" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "Correctamente" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "Tareas exitosas" -#: screens/Project/ProjectList/ProjectListItem.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "Copiado correctamente en el portapapeles" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "Dom" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "Domingo" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:168 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "Encuesta" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "Lista de encuestas" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "Vista previa de la encuesta" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "Alternancia de encuestas" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "Modal de vista previa de la encuesta" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "Preguntas de la encuesta" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:111 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "Sincronizar" -#: screens/Project/ProjectList/ProjectListItem.jsx:187 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "Sincronizar proyecto" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "Sincronizar todo" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "Sincronizar todas las fuentes" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "Error de sincronización" -#: screens/Project/ProjectList/ProjectListItem.jsx:160 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "Sincronizar para revisión" -#: screens/Setting/SettingList.jsx:101 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Project/ProjectList/ProjectListItem.js:120 +msgid "Syncing" +msgstr "" + +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "Sistema" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 msgid "System Administrator" msgstr "Administrador del sistema" -#: screens/User/UserDetail/UserDetail.jsx:44 -#: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:34 +#: screens/User/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "Auditor del sistema" -#: screens/Job/JobOutput/JobOutput.jsx:702 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "Advertencia del sistema" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "Los administradores del sistema tienen acceso ilimitado a todos los recursos." -#: screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "TACACS+" -#: screens/Setting/SettingList.jsx:84 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "Configuración de TACACS+" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "Pestañas" -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7510,7 +7684,7 @@ msgid "" "the usage of tags." msgstr "Las etiquetas resultan útiles cuando tiene un playbook de gran tamaño y desea ejecutar una parte específica de la tarea o la jugada. Utilice comas para separar varias etiquetas. Consulte la documentación para obtener información detallada sobre el uso de etiquetas." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -7518,198 +7692,196 @@ msgid "" "documentation for details on the usage of tags." msgstr "Las etiquetas resultan útiles cuando tiene un playbook de gran tamaño y desea ejecutar una parte específica de la tarea o la jugada. Utilice comas para separar varias etiquetas. Consulte la documentación de Ansible Tower para obtener información detallada sobre el uso de etiquetas." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:132 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "Etiquetas para la anotación" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "Etiquetas para anotación (opcional)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:175 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "URL destino" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "Tarea" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "Recuento de tareas" -#: screens/Job/JobOutput/JobOutput.jsx:693 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "Tarea iniciada" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "Tareas" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "Equipo" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "Roles de equipo" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "No se encontró la tarea." -#: components/AddRole/AddResourceRole.jsx:208 -#: components/AddRole/AddResourceRole.jsx:209 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: 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: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:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 -#: util/getRelatedResourceDeleteDetails.js:180 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 +#: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "Equipos" -#: screens/Template/Template.jsx:184 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "No se encontró la plantilla." -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -msgid "Template type" -msgstr "Tipo de plantilla" - -#: components/TemplateList/TemplateList.jsx:182 -#: components/TemplateList/TemplateList.jsx:239 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 -#: screens/Template/Templates.jsx:16 -#: util/getRelatedResourceDeleteDetails.js:224 -#: util/getRelatedResourceDeleteDetails.js:281 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 +#: util/getRelatedResourceDeleteDetails.js:217 +#: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "Plantillas" -#: 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 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "Probar" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "Credencial externa de prueba" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "Probar notificación" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -msgid "Test logging" -msgstr "Probar registros" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "Probar notificación" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "Prueba superada" -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "Texto" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "Área de texto" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "Area de texto" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "No se encontró ese valor. Ingrese o seleccione un valor válido." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr "El" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "El entorno de ejecución que se utilizará cuando no se haya configurado uno para una plantilla de trabajo." -#: screens/Application/shared/ApplicationForm.jsx:87 +#: screens/Application/shared/ApplicationForm.js:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "El tipo de permiso que debe usar el usuario para adquirir tokens para esta aplicación." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." msgstr "La cantidad de tiempo (en segundos) antes de que la notificación de correo electrónico deje de intentar conectarse con el host y caduque el tiempo de espera. Rangos de 1 a 120 segundos." -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" "timeout." msgstr "La cantidad de tiempo (en segundos) para ejecutar antes de que se cancele la tarea. Valores predeterminados en 0 para el tiempo de espera de la tarea." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." msgstr "La URL base del servidor de Grafana: el punto de acceso /api/annotations se agregará automáticamente a la URL base de Grafana." -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "El entorno de ejecución que se utilizará para las tareas dentro de esta organización. Se utilizará como reserva cuando no se haya asignado explícitamente un entorno de ejecución en el nivel de proyecto, plantilla de trabajo o flujo de trabajo." -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "El entorno de ejecución que se utilizará para las tareas que utilizan este proyecto. Se utilizará como reserva cuando no se haya asignado explícitamente un entorno de ejecución en el nivel de plantilla de trabajo o flujo de trabajo." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 +msgid "" +"The execution environment that will be used when launching\n" +"this job template. The resolved execution environment can be overridden by\n" +"explicitly assigning a different one to this job template." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." msgstr "El primero extrae todas las referencias. El segundo extrae el número de solicitud de extracción 62 de Github; en este ejemplo la rama debe ser \"pull/62/head\"." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 msgid "The full image location, including the container registry, image name, and version tag." msgstr "La ubicación completa de la imagen, que incluye el registro de contenedores, el nombre de la imagen y la etiqueta de la versión." -#: screens/Organization/shared/OrganizationForm.jsx:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "La cantidad máxima de hosts que puede administrar esta organización. El valor predeterminado es 0, que significa sin límite. Consulte la documentación de Ansible para obtener más información detallada." -#: screens/Template/shared/JobTemplateForm.jsx:428 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -7718,301 +7890,303 @@ msgid "" "with a change to" msgstr "La cantidad de procesos paralelos o simultáneos para utilizar durante la ejecución del playbook. Un valor vacío, o un valor menor que 1, usará el valor predeterminado de Ansible que normalmente es 5. La cantidad predeterminada de bifurcaciones puede sobreescribirse con un cambio a" -#: components/AdHocCommands/AdHocDetailsStep.jsx:188 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "La cantidad de procesos paralelos o simultáneos para utilizar durante la ejecución del playbook. Si no ingresa un valor, se utilizará el valor predeterminado del archivo de configuración de Ansible. Para obtener más información," -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "No se pudo encontrar la página solicitada." -#: components/AdHocCommands/AdHocDetailsStep.jsx:168 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "El patrón utilizado para dirigir los hosts en el inventario. Si se deja el campo en blanco, todos y * se dirigirán a todos los hosts del inventario. Para encontrar más información sobre los patrones de hosts de Ansible," -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/Project/ProjectList/ProjectListItem.js:118 +msgid "The project is currently syncing and the revision will be available after the sync is complete." +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 +msgid "The project must be synced before a revision is available." +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:128 +msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "Se ha eliminado el recurso asociado a este nodo." -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." msgstr "El formato sugerido para los nombres de variables es minúsculas y separados por guiones bajos (por ejemplo, foo_bar, user_id, host_name, etc.). No se permiten los nombres de variables con espacios." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 -msgid "The tower instance group cannot be deleted." -msgstr "No se puede eliminar el grupo de instancias de Tower." - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" "assigned to other projects. Create a new directory there and make\n" "sure the playbook files can be read by the \"awx\" system user,\n" -"or have {brandName} directly retrieve your playbooks from\n" +"or have {0} directly retrieve your playbooks from\n" "source control using the Source Control Type option above." -msgstr "No hay directorios de playbook disponibles en {project_base_dir}.\n" -"O ese directorio está vacío, o todo el contenido ya está\n" -"asignado a otros proyectos. Cree un nuevo directorio allí y asegúrese de que el usuario del sistema \"awx\" pueda leer los archivos del playbook,\n" -"o haga que {brandName} recupere directamente sus playbooks desde\n" -"la fuente de control utilizando la opción de tipo de fuente de control anterior." +msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:31 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "Debe haber un valor en al menos una entrada" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "Hubo un problema al iniciar sesión. Inténtelo de nuevo." -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "Se produjo un error al cargar este contenido. Vuelva a cargar la página." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "Se produjo un error al analizar el archivo. Compruebe el formato del archivo e inténtelo de nuevo." -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "Se produjo un error al guardar el flujo de trabajo." -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -msgid "There was an error testing the log aggregator." -msgstr "Se produjo un error al probar la agregación de registros." +#: components/AdHocCommands/AdHocDetailsStep.js:68 +msgid "These are the modules that {0} supports running commands against." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -msgid "These are the modules that {brandName} supports running commands against." -msgstr "Estos son los módulos que {brandName} admite para ejecutar comandos." - -#: components/AdHocCommands/AdHocDetailsStep.jsx:146 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "Estos son los niveles de detalle para la ejecución de comandos estándar que se admiten." -#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "Estos argumentos se utilizan con el módulo especificado." -#: components/AdHocCommands/AdHocDetailsStep.jsx:118 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "Estos argumentos se utilizan con el módulo especificado. Para encontrar información sobre {0}, haga clic en" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "Tercero" -#: screens/Template/shared/JobTemplateForm.jsx:153 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "Este proyecto debe actualizarse" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "Esta acción eliminará lo siguiente:" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "Esta acción disociará todos los roles de este usuario de los equipos seleccionados." -#: screens/Team/TeamRoles/TeamRolesList.jsx:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "Esta acción disociará el siguiente rol de {0}:" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "Esta acción disociará lo siguiente:" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "Este grupo de contenedores está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:282 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "Esta credencial está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "Este tipo de credencial está siendo utilizado por algunas credenciales y no se puede eliminar" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." -msgstr "Estos datos se utilizan para mejorar\n" +msgstr "" +"Estos datos se utilizan para mejorar\n" "futuras versiones del software y para proporcionar\n" "Información sobre la plataforma de automatización Ansible." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" "streamline customer experience and success." msgstr "Estos datos se utilizan para mejorar futuras versiones del software Tower y para ayudar a optimizar el éxito y la experiencia del cliente." -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "Este entorno de ejecución está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "Este campo se ignora a menos que se establezca una variable habilitada. Si la variable habilitada coincide con este valor, el host se habilitará en la importación." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "Este campo no puede estar en blanco" -#: util/validators.jsx:100 +#: util/validators.js:121 msgid "This field must be a number" msgstr "Este campo debe ser un número" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 msgid "This field must be a number and have a value between {0} and {1}" msgstr "Este campo debe ser un número y tener un valor entre {0} y {1}" -#: util/validators.jsx:40 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "Este campo debe ser un número y tener un valor entre {min} y {max}" -#: util/validators.jsx:140 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "Este campo debe ser una expresión regular" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: util/validators.jsx:84 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "Este campo debe ser un número entero" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "Este campo debe tener al menos {0} caracteres" -#: util/validators.jsx:31 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "Este campo debe tener al menos {min} caracteres" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "Este campo debe ser mayor que 0" -#: 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 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "Este campo no debe estar en blanco" -#: util/validators.jsx:74 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "Este campo no debe contener espacios" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "Este campo no debe exceder los {0} caracteres" -#: util/validators.jsx:22 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "Este campo no debe exceder los {max} caracteres" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "Este campo se recuperará de un sistema externo de gestión de claves secretas utilizando la credencial especificada." -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "Este grupo de instancias está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -msgstr "Este inventario se aplica a todos los nodos de la plantilla de trabajo dentro del flujo de trabajo ({0}) que indican un inventario." +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "Este inventario está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "Esta fuente de inventario está siendo utilizada por otros recursos que dependen de ella. ¿Está seguro de que desea eliminarla?" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "Esta es la única vez que se mostrará la clave secreta del cliente." -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "Esta es la única vez que se mostrará el valor del token y el valor del token de actualización asociado." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "Esta plantilla de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:166 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "Esta organización está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:225 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "Este proyecto está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "Este proyecto se está sincronizando y no se puede hacer clic en él hasta que el proceso de sincronización se haya completado" -#: components/Schedule/ScheduleList/ScheduleList.jsx:122 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "Falta un inventario en esta programación" -#: components/Schedule/ScheduleList/ScheduleList.jsx:147 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "Faltan los valores de la encuesta requeridos en esta programación" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:64 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "Este paso contiene errores" -#: screens/User/shared/UserForm.jsx:146 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "Este valor no coincide con la contraseña introducida anteriormente. Confirme la contraseña." -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" msgstr "Esta operación revertirá todos los valores de configuración a los valores predeterminados de fábrica. ¿Está seguro de desea continuar?" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "Este flujo de trabajo no tiene ningún nodo configurado." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "Esta plantilla de trabajo del flujo de trabajo está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "Jue" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "Jueves" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "Duración" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8022,7 +8196,7 @@ msgid "" "performed." msgstr "Tiempo en segundos para considerar que un proyecto es actual. Durante la ejecución de trabajos y callbacks, la tarea del sistema evaluará la marca de tiempo de la última actualización del proyecto. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva actualización del proyecto." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -8031,951 +8205,967 @@ msgid "" "inventory sync will be performed." msgstr "Tiempo en segundos para considerar que un proyecto es actual. Durante la ejecución de trabajos y callbacks, el sistema de tareas evaluará la marca de tiempo de la última sincronización. Si es anterior al tiempo de espera de la caché, no se considera actual y se realizará una nueva sincronización del inventario." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "Tiempo de espera agotado" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:103 -#: 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:489 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "Tiempo de espera" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "Tiempo de espera en minutos" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "Tiempo de espera en segundos" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "Alternar leyenda" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "Alternar contraseña" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "Alternar herramientas" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "Alternar expandir/contraer líneas de eventos" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "Alternar host" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "Alternar instancia" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "Alternar leyenda" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "Aprobaciones para alternar las notificaciones" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "No se pudieron alternar las notificaciones" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "Iniciar alternancia de notificaciones" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "Éxito de alternancia de notificaciones" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "Alternar programaciones" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "Alternar herramientas" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "Token" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "Información del token" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "No se encontró el token." -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -msgid "Token type" -msgstr "Tipo de token" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:106 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "Tokens" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "Herramientas" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "Paginación superior" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "Tareas totales" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "Nodos totales" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:174 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "Tareas totales" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "Seguimiento de submódulos" -#: components/PromptDetail/PromptProjectDetail.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:75 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "Seguimiento del último commit de los submódulos en la rama" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "Prueba" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "Verdadero" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "Mar" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "Martes" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:215 -#: components/JobList/JobListItem.jsx:82 -#: 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:162 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:196 -#: components/TemplateList/TemplateList.jsx:221 -#: components/TemplateList/TemplateListItem.jsx:152 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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: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:241 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: 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: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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "Tipo" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "Detalles del tipo" -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -msgid "Type answer then click checkbox on right to select answer as default." -msgstr "Escriba la respuesta y marque la casilla de verificación a la derecha para seleccionar la respuesta predeterminado." +#: screens/Template/Survey/MultipleChoiceField.js:61 +msgid "" +"Type answer then click checkbox on right to select answer as\n" +"default." +msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:111 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "" + +#: components/HostForm/HostForm.js:62 +msgid "Unable to change inventory on a host" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "No disponible" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "Deshacer" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Unfollow" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "Ilimitado" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "Servidor inaccesible" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "Recuento de hosts inaccesibles" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "Host inaccesibles" -#: util/dates.jsx:89 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "Cadena de días no reconocida" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "Modal de cambios no guardados" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "Revisión de actualización durante el lanzamiento" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -msgid "Update on Launch" -msgstr "Actualizar al ejecutar" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -msgid "Update on Project Update" -msgstr "Actualizar en la actualización del proyecto" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:160 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "Actualizar al ejecutar" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:170 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "Actualizar al actualizar el proyecto" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "Actualizar opciones" -#: screens/Setting/SettingList.jsx:91 -msgid "Update settings pertaining to Jobs within {brandName}" -msgstr "Actualizar las configuraciones correspondientes a las tareas dentro de {brandName}" +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 +msgid "Update revision on job launch" +msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Setting/SettingList.js:87 +msgid "Update settings pertaining to Jobs within {0}" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "Actualizar clave de Webhook" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "Actualizando" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr "Cargar un archivo .zip" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "Cargue un manifiesto de suscripción de Red Hat que contenga su suscripción. Para generar su manifiesto de suscripción, vaya a <0>subscription allocations (asignaciones de suscripciones) en Red Hat Customer Portal." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -msgid "Use Fact Storage" -msgstr "Utilizar almacenamiento de eventos" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "Utilizar SSL" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "Utilizar TLS" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" -msgstr "Utilice los mensajes personalizados para cambiar el contenido de las notificaciones enviadas cuando una tarea se inicie, se realice correctamente o falle. Utilice llaves\n" +msgstr "" +"Utilice los mensajes personalizados para cambiar el contenido de las notificaciones enviadas cuando una tarea se inicie, se realice correctamente o falle. Utilice llaves\n" "para acceder a la información sobre la tarea:" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:107 +#: screens/InstanceGroup/Instances/InstanceList.js:215 +msgid "Used Capacity" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "Capacidad usada" -#: components/AppContainer/PageHeaderToolbar.jsx:130 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "Usuario" -#: components/AppContainer/PageHeaderToolbar.jsx:158 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "Detalles del usuario" -#: screens/Setting/SettingList.jsx:120 -#: screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "Interfaz de usuario" -#: screens/Setting/SettingList.jsx:125 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "Configuración de la interfaz de usuario" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "Roles de los usuarios" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:129 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "Tipo de usuario" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "Análisis de usuarios" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "Análisis de usuarios e Insights" -#: components/AppContainer/PageHeaderToolbar.jsx:151 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "Detalles del usuario" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "No se encontró el usuario." -#: screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "Tokens de usuario" -#: components/AddRole/AddResourceRole.jsx:124 -#: components/AddRole/AddResourceRole.jsx:139 -#: components/ResourceAccessList/ResourceAccessList.jsx:127 -#: components/ResourceAccessList/ResourceAccessList.jsx:180 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:78 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:180 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:230 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 -#: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:122 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:63 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "Usuario" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "Nombre de usuario/contraseña" -#: components/AddRole/AddResourceRole.jsx:198 -#: components/AddRole/AddResourceRole.jsx:199 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:117 -#: screens/User/UserList/UserList.jsx:157 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "Usuarios" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:99 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:221 -#: screens/Template/shared/JobTemplateForm.jsx:412 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "Variables" -#: screens/Job/JobOutput/JobOutput.jsx:694 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "Variables solicitadas" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "Contraseña Vault" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "Contraseña Vault | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:699 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "Nivel de detalle" -#: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:100 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:462 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "Nivel de detalle" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "Versión" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -msgid "View Activity Stream settings" -msgstr "Ver la configuración del flujo de actividad" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "Ver la configuración de Azure AD" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "Ver detalles de la credencial" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "Ver detalles" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "Ver la configuración de GitHub" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "Ver la configuración de Google OAuth 2.0" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "Ver detalles del host" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:169 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "Ver detalles del inventario" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "Ver grupos de inventario" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "Ver detalles del host del inventario" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "Ver ejemplos de JSON en <0>www.json.org" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "Ver detalles de la tarea" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "Ver la configuración de las tareas" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "Ver la configuración de LDAP" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "Ver la configuración del registro" -#: screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 +msgid "View Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "Ver la configuración de sistemas varios" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "Ver detalles de la organización" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "Ver detalles del proyecto" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "Ver la configuración de RADIUS" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "Ver la configuración de SAML" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "Ver programaciones" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "Ver configuración" -#: screens/Template/Template.jsx:168 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "Mostrar el cuestionario" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "Ver la configuración de TACACS+" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "Ver detalles del equipo" -#: screens/Template/Template.jsx:265 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "Ver detalles de la plantilla" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "Ver tokens" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "Ver detalles del usuario" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "Ver la configuración de la interfaz de usuario" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "Ver detalles de la aprobación del flujo de trabajo" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "Ver ejemplos de YAML en <0>docs.ansible.com" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "Ver el flujo de actividad" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "Ver todas las credenciales." -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "Ver todos los hosts." -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:97 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "Ver todos los inventarios." -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "Ver todos los hosts de inventario." -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "Ver todas las tareas" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "Ver todas las tareas." -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "Ver todas las plantillas de notificación." -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "Ver todas las organizaciones." -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "Ver todos los proyectos." -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "Ver todos los equipos." -#: screens/Template/Template.jsx:185 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "Ver todas las plantillas." -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "Ver todos los usuarios." -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "Ver todas las aprobaciones del flujo de trabajo." -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "Ver todas las aplicaciones." -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "Ver todos los tipos de credencial" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "Ver todos los entornos de ejecución" -#: screens/InstanceGroup/ContainerGroup.jsx:83 -#: screens/InstanceGroup/InstanceGroup.jsx:89 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "Ver todos los grupos de instancias" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "Ver todas las tareas de gestión" -#: screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "Ver todas las configuraciones" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "Ver todos los tokens." -#: screens/Setting/SettingList.jsx:132 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "Ver y modificar su información de suscripción" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "Mostrar detalles del evento" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "Ver detalles de la fuente de inventario" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "Ver tarea {0}" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "Ver detalles del nodo" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 msgid "View smart inventory host details" msgstr "Ver detalles del host de inventario inteligente" -#: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "Vistas" -#: components/TemplateList/TemplateListItem.jsx:157 -#: components/TemplateList/TemplateListItem.jsx:163 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "Visualizador" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "ADVERTENCIA:" -#: components/JobList/JobList.jsx:198 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "Esperando" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:701 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "Advertencia" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "Aviso: modificaciones no guardadas" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "No pudimos localizar las licencias asociadas a esta cuenta." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "No pudimos localizar las suscripciones asociadas a esta cuenta." -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:249 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "Credencial de Webhook" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "Credenciales de Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "Clave de Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "Servicio de Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "URL de Webhook" -#: screens/Template/shared/JobTemplateForm.jsx:655 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "Detalles de Webhook" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Los servicios de Webhook pueden iniciar trabajos con esta plantilla de trabajo mediante una solicitud POST a esta URL." -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "Los servicios de Webhook pueden usar esto como un secreto compartido." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 +msgid "Webhooks" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "Mié" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "Miércoles" -#: components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "Semana" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "Día de la semana" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "Día del fin de semana" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." msgstr "¡Bienvenido a Red Hat Ansible Automation Platform! Complete los pasos a continuación para activar su suscripción." -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "¡Bienvenido a {brandName}!" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:150 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" "external source." msgstr "Cuando esta opción no esté marcada, se llevará a cabo una fusión, que combinará las variables locales con aquellas halladas en la fuente externa." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." msgstr "Cuando esta opción no esté marcada, los hosts y grupos secundarios locales que no se encuentren en la fuente externa no se modificarán mediante el proceso de actualización del inventario." -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "Flujo de trabajo" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "Aprobación del flujo de trabajo" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "No se encontró la aprobación del flujo de trabajo." -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "Aprobaciones del flujo de trabajo" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "Tarea en flujo de trabajo" -#: components/JobList/JobListItem.jsx:158 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 -#: util/getRelatedResourceDeleteDetails.js:111 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 +#: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "Plantilla de trabajo para flujo de trabajo" -#: util/getRelatedResourceDeleteDetails.js:121 -#: util/getRelatedResourceDeleteDetails.js:163 -#: util/getRelatedResourceDeleteDetails.js:266 +#: util/getRelatedResourceDeleteDetails.js:114 +#: util/getRelatedResourceDeleteDetails.js:156 +#: util/getRelatedResourceDeleteDetails.js:259 msgid "Workflow Job Template Nodes" msgstr "Nodos de la plantilla de tareas de flujo de trabajo" -#: util/getRelatedResourceDeleteDetails.js:146 +#: util/getRelatedResourceDeleteDetails.js:139 msgid "Workflow Job Templates" msgstr "Plantillas de trabajos de flujo de trabajo" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "Enlace del flujo de trabajo" -#: components/TemplateList/TemplateList.jsx:200 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "Plantilla de flujo de trabajo" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:433 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "Mensaje de flujo de trabajo aprobado" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:445 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "Cuerpo del mensaje de flujo de trabajo aprobado" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:457 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "Mensaje de flujo de trabajo denegado" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:469 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "Cuerpo del mensaje de flujo de trabajo denegado" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "Documentación del flujo de trabajo" @@ -8983,493 +9173,450 @@ msgstr "Documentación del flujo de trabajo" msgid "Workflow job templates" msgstr "Plantillas de trabajo del flujo de trabajo" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "Modal de enlace del flujo de trabajo" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "Modal de vista del nodo de flujo de trabajo" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:481 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "Mensaje de flujo de trabajo pendiente" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:493 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "Cuerpo del mensaje de flujo de trabajo pendiente" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:505 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "Mensaje de tiempo de espera agotado del flujo de trabajo" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "Cuerpo del mensaje de tiempo de espera agotado del flujo de trabajo" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "Escribir" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "YAML:" -#: components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "Año" -#: components/Search/Search.jsx:256 +#: components/Search/Search.js:259 msgid "Yes" msgstr "SÍ" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "No puede realizar ninguna acción sobre las siguientes aprobaciones del flujo de trabajo: {itemsUnableToApprove}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "No puede realizar ninguna acción sobre las siguientes aprobaciones del flujo de trabajo: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:156 +#: components/Lookup/MultiCredentialsLookup.js: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 "No se pueden seleccionar varias credenciales con el mismo ID de Vault, ya que anulará automáticamente la selección de la otra con el mismo ID de Vault." -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "No tiene permiso para eliminar los siguientes grupos: {itemsUnableToDelete}" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "No tiene permiso para eliminar {pluralizedItemName}: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 -msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -msgstr "No tiene permiso para eliminar {pluralizedItemName}: {itemsUnableToDelete}." - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "No tiene permiso para disociar lo siguiente: {itemsUnableToDisassociate}" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" -msgstr "Puede aplicar una serie de posibles variables en el\n" +msgstr "" +"Puede aplicar una serie de posibles variables en el\n" "mensaje. Para obtener más información, consulte" -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "Su sesión ha expirado. Inicie sesión para continuar." -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "Su sesión está a punto de expirar" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "Acercar" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "Alejar" -#: screens/Template/shared/JobTemplateForm.jsx:753 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js:152 msgid "a new webhook key will be generated on save." msgstr "se generará una nueva clave de Webhook al guardar." -#: screens/Template/shared/JobTemplateForm.jsx:750 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js:142 msgid "a new webhook url will be generated on save." msgstr "se generará una nueva URL de Webhook al guardar." -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 +#: screens/Template/Survey/SurveyListItem.js:157 msgid "actions" msgstr "acciones" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "y haga clic en Actualizar revisión al ejecutar" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "aprobado" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "logotipo de la marca" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "cancelar eliminación" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -msgid "capacity adjustment" -msgstr "ajuste de la capacidad" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:240 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "comando" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "confirmar eliminación" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "confirmar disociación" -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -msgid "copy to clipboard disabled" -msgstr "se deshabilitó la función de copiar al portapapeles" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "error de eliminación" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "denegado" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "disociar" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "documentación" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: 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/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "modificar" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "cifrado" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -msgid "expiration" -msgstr "expiración" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "para obtener más información." -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "para obtener más información." -#: components/AdHocCommands/AdHocDetailsStep.jsx:174 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "aquí" -#: components/AdHocCommands/AdHocDetailsStep.jsx:125 -#: components/AdHocCommands/AdHocDetailsStep.jsx:194 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "aquí." -#: components/Lookup/HostFilterLookup.jsx:337 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "hosts" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -msgid "instance counts" -msgstr "recuento de instancias" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -msgid "instance group used capacity" -msgstr "capacidad utilizada del grupo de instancias" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -msgid "instance host name" -msgstr "nombre de host de la instancia" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -msgid "instance type" -msgstr "tipo de instancia" - -#: components/Lookup/HostListItem.jsx:30 -msgid "inventory" -msgstr "inventario" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "elementos" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "usuario ldap" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "tipo de inicio de sesión" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "min" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "bajar" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "subir" -#: components/Lookup/HostListItem.jsx:23 -msgid "name" -msgstr "nombre" - -#: screens/Template/Survey/MultipleChoiceField.jsx:73 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "nueva elección" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "de" -#: components/AdHocCommands/AdHocDetailsStep.jsx:238 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "opción a" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "página" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "páginas" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "por página" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "volver a ejecutar las tareas" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -msgid "scope" -msgstr "alcance" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "seg" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "segundos" -#: components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "seleccionar módulo" -#: components/AdHocCommands/AdHocDetailsStep.jsx:135 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "seleccionar nivel de detalle" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "inicio de sesión social" -#: screens/Template/shared/JobTemplateForm.jsx:344 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "rama de fuente de control" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "sistema" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -msgid "team name" -msgstr "nombre del equipo" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "agotado" -#: components/AdHocCommands/AdHocDetailsStep.jsx:218 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "alternar cambios" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -msgid "token name" -msgstr "nombre del token" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "actualizado" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "clave de Webhook de la plantilla de trabajo del flujo de trabajo" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "{0, plural, one {¿Está seguro de que desea eliminar el siguiente grupo?} other {¿Está seguro de que desea eliminar los siguientes grupos?}}" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "{0, plural, one {¿Borrar grupo?} other {¿Borrar grupos?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 +msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.js:236 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 {El inventario estará en estado pendiente hasta que se procese la eliminación final.} other {Los inventarios estarán en estado pendiente hasta que se procese la eliminación final.}}" -#: components/JobList/JobList.jsx:242 +#: components/JobList/JobList.js:254 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 {No se puede eliminar la tarea seleccionada debido a permisos insuficientes o a que la tarea se está ejecutando} other {No se pueden eliminar las tareas seleccionadas debido a permisos insuficientes o a que las tareas se están ejecutando}}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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 {No se puede eliminar esta aprobación debido a permisos insuficientes o a que la tarea está pendiente} other {No se pueden eliminar estas aprobaciones debido a permisos insuficientes o a que las tareas están pendientes}}" -#: screens/Credential/CredentialList/CredentialList.jsx:181 +#: screens/Credential/CredentialList/CredentialList.js:178 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 {Esta credencial está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?} other {Eliminar estas credenciales podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?}}" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:170 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 {Este tipo de credencial está siendo utilizado por algunas credenciales y no se puede eliminar.} other {No se pueden eliminar los tipos de credencial que están siendo utilizados por credenciales. ¿Está seguro de que desea eliminarlos de todos modos?}}" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:187 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 {Este entorno de ejecución está siendo utilizado por otros recursos. ¿Estás seguro de que desea eliminarlo?} other {Estos entornos de ejecución podrían estar siendo utilizados por otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?}}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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 {Este grupo de instancias está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?} other {Eliminar estos grupos de instancia podría afectar a otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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 {Este inventario está siendo utilizado actualmente por algunas plantillas. ¿Estás seguro de que desea eliminarlo?} other {Eliminar estos inventarios podría afectar a algunas plantillas que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?}}" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.js:186 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 {Esta fuente de inventario está siendo utilizada por otros recursos que dependen de ella. ¿Estás seguro de que desea eliminarla?} other {Eliminar estas fuentes de inventario podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?}}" -#: screens/Organization/OrganizationList/OrganizationList.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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 {Esta organización está siendo utilizada por otros recursos. ¿Está seguro de que desea eliminarla?} other {Eliminar estas organizaciones podría afectar a otros recursos que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?}}" -#: screens/Project/ProjectList/ProjectList.jsx:198 +#: screens/Project/ProjectList/ProjectList.js:241 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 {Este proyecto está siendo utilizado por otros recursos. ¿Está seguro de que desea eliminarlo?} other {Eliminar estos proyectos podría afectar a otros recursos que dependen de ellos. ¿Está seguro de que desea eliminarlos de todos modos?}}" -#: components/TemplateList/TemplateList.jsx:242 +#: components/TemplateList/TemplateList.js:251 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 {Esta plantilla está siendo utilizada por algunos nodos del flujo de trabajo. ¿Está seguro de que desea eliminarla?} other {Eliminar estas plantillas podría afectar a algunos nodos del flujo de trabajo que dependen de ellas. ¿Está seguro de que desea eliminarlas de todos modos?}}" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {No puede cancelar la siguiente tarea porque no se está ejecutando:} other {No puede cancelar las siguientes tareas porque no se están ejecutando:}}" -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "{0, plural, one {No tiene permiso para cancelar la siguiente tarea:} other {No tiene permiso para cancelar las siguientes tareas:}}" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -msgid "{0}" -msgstr "{0}" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "{0} (eliminado)" -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "{0} más" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "{0} fuentes con errores de sincronización." -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -msgid "{0}: {1}" -msgstr "{0}: {1}" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "logo de {brandName}" -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "{dateStr} por <0>{username}" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:187 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "{forks, plural, one {# fork} other {# forks}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{intervalValue, plural, one {day} other {days}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{intervalValue, plural, one {hour} other {hours}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{intervalValue, plural, one {minute} other {minutes}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{intervalValue, plural, one {month} other {months}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{intervalValue, plural, one {week} other {weeks}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{intervalValue, plural, one {year} other {years}}" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/Schedule/shared/DateTimePicker.js:49 +msgid "{label} date" +msgstr "" + +#: components/Schedule/shared/DateTimePicker.js:57 +msgid "{label} time" +msgstr "" + +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "{minutes} min {seconds} seg" -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {Esta acción cancelará la siguiente tarea:} other {Esta acción cancelará las siguientes tareas:}}" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/DetailList/NumberSinceDetail.js:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "Lista de {pluralizedItemName}" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr "{sessionCountdown, plural, one {Se cerrará la sesión en # segundo por inactividad} other {Se cerrará la sesión en # segundos por inactividad}}" diff --git a/awx/ui_next/src/locales/fr/messages.po b/awx/ui_next/src/locales/fr/messages.po index c9e1fe9c53..378db09e49 100644 --- a/awx/ui_next/src/locales/fr/messages.po +++ b/awx/ui_next/src/locales/fr/messages.po @@ -2,370 +2,372 @@ msgid "" msgstr "" "POT-Creation-Date: 2021-06-08 18:28+0000\n" "Mime-Version: 1.0\n" -"Language: fr \n" +"Language: fr\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "(10 premiers seulement)" -#: components/TemplateList/TemplateListItem.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "(Me le demander au lancement)" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant le justificatif d'identité spécifié." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -msgid "- Enable Concurrent Jobs" -msgstr "Activer les tâches parallèles" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -msgid "- Enable Webhooks" -msgstr "Activer Webhooks" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "/ (project root)" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:211 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "0 (Normal)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:102 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "0 (Avertissement)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:103 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "1 (info)" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:212 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "1 (Verbeux)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:104 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "2 (Déboguer)" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:213 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "2 (Verbeux +)" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "3 (Déboguer)" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "4 (Débogage de la connexion)" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "5 (Débogage WinRM)" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" "the branch field not otherwise available." msgstr "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:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "Un manifeste d'abonnement est une exportation d'un abonnement Red Hat. Pour générer un manifeste d'abonnement, rendez-vous sur <0>access.redhat.com. Pour plus d'informations, consultez le <1>Guide de l'utilisateur." -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "TOUS" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:211 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "Service API/Clé d’intégration" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "Token API" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "Service API/Clé d’intégration" -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "À propos de " -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:70 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:145 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "Accès" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "Expiration du jeton d'accès" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:275 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "SID de compte" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "Token de compte" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "Action" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:164 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:257 -#: screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 -#: screens/Credential/CredentialList/CredentialList.jsx:149 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:165 -#: screens/Host/HostList/HostListItem.jsx:42 -#: 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:148 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: 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:223 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:172 -#: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:151 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:168 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "Actions" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:83 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 -#: components/TemplateList/TemplateListItem.jsx:233 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "Activité" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:44 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "Flux d’activité" -#: screens/Setting/SettingList.jsx:110 -msgid "Activity Stream settings" -msgstr "Flux d’activité" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "Sélecteur de type de flux d'activité" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "Acteur" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "Ajouter" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "Ajouter un lien" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "Ajouter un nœud" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "Ajouter une question" -#: components/AddRole/AddResourceRole.jsx:184 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "Ajouter des rôles" -#: components/AddRole/AddResourceRole.jsx:181 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "Ajouter des rôles d’équipe" -#: components/AddRole/AddResourceRole.jsx:178 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "Ajouter des rôles d'utilisateur" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "Ajouter un nouveau noeud" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 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:159 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "Ajouter un groupe de conteneurs" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "Ajouter un groupe existant" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "Ajouter une hôte existant" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "Ajouter un groupe d'instances" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "Ajouter un inventaire" -#: components/TemplateList/TemplateList.jsx:133 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "Ajouter un modèle de job" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "Ajouter un nouveau groupe" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "Ajouter un nouvel hôte" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "Ajouter un type de ressource" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "Ajouter un inventaire smart" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "Ajouter les permissions de l'équipe" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "Ajouter les permissions de l’utilisateur" -#: components/TemplateList/TemplateList.jsx:134 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "Ajouter un modèle de flux de travail" -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "Administration" -#: components/DataListToolbar/DataListToolbar.jsx:85 -#: screens/Job/JobOutput/JobOutput.jsx:706 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "Avancé" -#: components/Search/AdvancedSearch.jsx:282 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "Documentation sur la recherche avancée" -#: components/Search/AdvancedSearch.jsx:264 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "Saisie de la valeur de la recherche avancée" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:172 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -373,382 +375,369 @@ msgid "" "like the Ansible inventory .ini file format." msgstr "Chaque fois qu’un projet est mis à jour et que la révision SCM est modifiée, réalisez une mise à jour de la source sélectionnée avant de lancer les tâches liées un à job. Le but est le contenu statique, comme le format .ini de fichier d'inventaire Ansible." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "Après le nombre d'occurrences" -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "Modal d'alerte" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "Tous" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "Tous les types de tâche" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "Toutes les tâches" -#: components/PromptDetail/PromptProjectDetail.jsx:48 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "Autoriser le remplacement de la branche" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -msgid "Allow Provisioning Callbacks" -msgstr "Autoriser les rappels d’exécution" +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 +msgid "Allow branch override" +msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "Permet de modifier la branche de contrôle des sources ou la révision dans un modèle de job qui utilise ce projet." -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "Liste des URI autorisés, séparés par des espaces" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "Toujours" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "Amazon EC2" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "Une erreur est survenue" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "Un inventaire doit être sélectionné" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "Ansible Tower" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "Documentation Ansible Tower" -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "Type de réponse" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "Nom de variable de réponse" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "Quelconque" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "Application" -#: screens/User/Users.jsx:36 -msgid "Application Name" -msgstr "Nom d'application" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -msgid "Application access token" -msgstr "Jeton d'accès de l’application" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "Informations sur l’application" -#: screens/User/UserTokenList/UserTokenList.jsx:111 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "Nom de l'application" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "Application non trouvée." -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 -#: util/getRelatedResourceDeleteDetails.js:215 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 +#: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "Applications" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "Applications & Jetons" -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "Approbation" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "Approuver" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "Approuvé" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "Approuvé - {0}. Voir le flux d'activité pour plus d'informations." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "Approuvé par {0} - {1}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "Avril" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "Êtes-vous certain de vouloir annuler ce job ?" -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "Êtes-vous sûr de vouloir supprimer :" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "Êtes-vous sûr de vouloir désactiver l'authentification locale ? Cela pourrait avoir un impact sur la capacité des utilisateurs à se connecter et sur la capacité de l'administrateur système à annuler ce changement." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "Voulez-vous vraiment quitter le flux de travail Creator sans enregistrer vos modifications ?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "Êtes-vous sûr de vouloir supprimer tous les nœuds de ce flux de travail ?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "Êtes-vous sûr de vouloir supprimer le nœud ci-dessous :" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "Êtes-vous sûr de vouloir supprimer ce lien ?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "Êtes-vous sûr de vouloir supprimer ce nœud ?" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "Êtes-vous sûr de vouloir supprimer l'accès {0} de {1} ? Cela affectera tous les membres de l'équipe." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "Etes-vous sûr de vouloir supprimer l'accès à {0} de {username} ?" -#: screens/Job/JobOutput/JobOutput.jsx:844 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "Voulez-vous vraiment demander l'annulation de ce job ?" -#: components/AdHocCommands/AdHocDetailsStep.jsx:106 -#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "Arguments" -#: screens/Job/JobDetail/JobDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "Artefacts" -#: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "Associé" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "Erreur de rôle d’associé" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "Association modale" -#: components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "Au moins une valeur doit être sélectionnée pour ce champ." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "Août" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "Authentification" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "Expiration du code d'autorisation" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "Type d'autorisation" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "Auto" -#: screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "Azure AD" -#: screens/Setting/SettingList.jsx:60 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "Paramètres AD Azure" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:125 -#: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:133 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "Retour" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "Retour à Références" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "Naviguer vers le tableau de bord" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "Retour aux groupes" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "Retour aux hôtes" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "Retour aux inventaires" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "Retour Jobs" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "Retour aux notifications" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "Retour à Organisations" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "Retour aux projets" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "Retour aux horaires" -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: 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/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "Retour aux paramètres" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "Retour aux sources" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "Retour Haut de page" -#: screens/Template/Template.jsx:138 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "Retour aux modèles" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "Retour Haut de page" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "Retour aux utilisateurs" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "Retour à Approbation des flux de travail" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "Retour aux applications" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "Retour aux types d'informations d'identification" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "Retour aux environnements d'exécution" -#: screens/InstanceGroup/ContainerGroup.jsx:56 -#: screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "Retour aux groupes d'instances" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "Retour aux Jobs de gestion" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:69 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -756,11 +745,11 @@ msgid "" "path used to locate playbooks." msgstr "Chemin de base utilisé pour localiser les playbooks. Les répertoires localisés dans ce chemin sont répertoriés dans la liste déroulante des répertoires de playbooks. Le chemin de base et le répertoire de playbook sélectionnés fournissent ensemble le chemin complet servant à localiser les playbooks." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "Mot de passe d'auth de base" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -768,1049 +757,1059 @@ msgid "" "provide a custom refspec." msgstr "Branche à extraire. En plus des branches, vous pouvez saisir des balises, des hachages de validation et des références arbitraires. Certains hachages et références de validation peuvent ne pas être disponibles à moins que vous ne fournissiez également une refspec personnalisée." -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "Brand Image" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "Parcourir" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "Par défaut, nous collectons et transmettons à Red Hat des données analytiques sur l'utilisation du service. Il existe deux catégories de données collectées par le service. Pour plus d'informations, consultez <0>cette page de documentation Tower. Décochez les cases suivantes pour désactiver cette fonctionnalité." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:184 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" 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:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "Expiration Délai d’attente du cache" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "Expiration du délai d’attente du cache" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "Expiration du délai d’attente du cache (secondes)" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:126 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:134 -#: components/Lookup/HostFilterLookup.jsx:326 -#: 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: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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "Annuler" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "Annuler Sync Source d’inventaire" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:820 -#: screens/Job/JobOutput/JobOutput.jsx:821 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "Annuler Job" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "Annuler Sync Projet" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:210 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "Annuler Sync" -#: screens/Job/JobOutput/JobOutput.jsx:828 -#: screens/Job/JobOutput/JobOutput.jsx:831 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "Annuler le job" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "Annuler les changements de liens" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "Annuler la suppression d'un lien" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "Annuler la recherche" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "Annuler le retrait d'un nœud" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "Annuler le retour" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "Annuler le job sélectionné" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "Annuler les jobs sélectionnés" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "Annuler l'édition de l'abonnement" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:389 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "Annuler {0}" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "Annulé" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:152 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." msgstr "Impossible d'activer l'agrégateur de logs sans fournir l'hôte de l'agrégateur de logs et le type d'agrégateur de logs." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "Capacité" -#: components/Search/AdvancedSearch.jsx:185 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 +msgid "Capacity Adjustment" +msgstr "" + +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "La version non sensible à la casse de contains" -#: components/Search/AdvancedSearch.jsx:209 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "Version non sensible à la casse de endswith." -#: components/Search/AdvancedSearch.jsx:173 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "Version non sensible à la casse de exact." -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "Version non sensible à la casse de regex" -#: components/Search/AdvancedSearch.jsx:197 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "Version non sensible à la casse de startswith." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:75 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." -msgstr "Changer PROJECT_ROOTS quand tu deploie\n" +msgstr "" +"Changer PROJECT_ROOTS quand tu deploie\n" "{brandNAME} pour changer cette cible." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "Modifié" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "Modifications" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "Canal" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:206 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "Vérifier" -#: components/Search/AdvancedSearch.jsx:251 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "Vérifiez si le champ donné ou l'objet connexe est nul ; attendez-vous à une valeur booléenne." -#: components/Search/AdvancedSearch.jsx:257 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "Vérifiez si la valeur du champ donné est présente dans la liste fournie ; attendez-vous à une liste d'éléments séparés par des virgules." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr "Choisissez un fichier .json" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "Choisissez un type de notification" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:28 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "Choisissez un répertoire Playbook" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "Choisissez un type de contrôle à la source" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "Choisir un service de webhook" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:199 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "Choisir un type de job" -#: components/AdHocCommands/AdHocDetailsStep.jsx:86 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "Choisissez un module" -#: screens/Inventory/shared/InventorySourceForm.jsx:147 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "Choisissez une source" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "Choisissez une méthode HTTP" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." msgstr "Spécifiez le type de format ou de type de réponse que vous souhaitez pour interroger l'utilisateur. Consultez la documentation d’Ansible Tower pour en savoir plus sur chaque option." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -msgid "Choose an email option" -msgstr "Choisir une option d'email" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "Choisissez les rôles à appliquer aux ressources sélectionnées. Notez que tous les rôles sélectionnés seront appliqués à toutes les ressources sélectionnées." -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "Choisissez les ressources qui recevront de nouveaux rôles. Vous pourrez sélectionner les rôles à postuler lors de l'étape suivante. Notez que les ressources choisies ici recevront tous les rôles choisis à l'étape suivante." -#: components/AddRole/AddResourceRole.jsx:194 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "Choisissez le type de ressource qui recevra de nouveaux rôles. Par exemple, si vous souhaitez ajouter de nouveaux rôles à un ensemble d'utilisateurs, veuillez choisir Utilisateurs et cliquer sur Suivant. Vous pourrez sélectionner les ressources spécifiques dans l'étape suivante." -#: components/PromptDetail/PromptProjectDetail.jsx:40 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "Nettoyer" -#: components/DataListToolbar/DataListToolbar.jsx:64 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "Effacer tous les filtres" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "Effacer l'abonnement" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "Effacer la sélection d'abonnement" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "Cliquez sur un nœud disponible pour créer un nouveau lien. Cliquez en dehors du graphique pour annuler." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 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:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js: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." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "Cliquez pour créer un nouveau lien vers ce nœud." -#: screens/Template/Survey/MultipleChoiceField.jsx:114 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "Cliquez pour changer la valeur par défaut" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "Cliquez pour voir les détails de ce Job" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "ID du client" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "Identifiant client" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "Identifiant client" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "Question secrète du client" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "Type de client" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "Fermer" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "Fermer la modalité d'abonnement" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "Cloud" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "Effondrement" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "Commande" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "Conforme" -#: screens/Template/shared/JobTemplateForm.jsx:602 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "Jobs parallèles" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "Confirmer" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "Confirmer Effacer" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "Confirmer Désactiver l'autorisation locale" -#: screens/User/shared/UserForm.jsx:87 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "Confirmer le mot de passe" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "Confirmer l'annulation du job" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "Confirmer l'annulation" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "Confirmer la suppression" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "Confirmer dissocier" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "Confirmer la suppression du lien" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "Confirmer la suppression du nœud" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "Confirmer la suppression de tous les nœuds" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "Confirmer annuler tout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "Confirmer la sélection" -#: screens/Job/JobDetail/JobDetail.jsx:236 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "Groupe de conteneurs" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "Groupe de conteneurs" -#: screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "Groupe de conteneurs non trouvé." -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "Chargement du contenu" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "Continuer" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." msgstr "Contrôlez le niveau de sortie produit par Ansible pour les tâches d'actualisation de source d'inventaire." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook." -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "Convergence" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "Sélection Convergence" -#: components/CopyButton/CopyButton.jsx:41 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "Copier" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "Copier les identifiants" -#: components/CopyButton/CopyButton.jsx:48 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "Erreur de copie" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "Copier Environnement d'exécution" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "Copier l'inventaire" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "Copie du modèle de notification" -#: screens/Project/ProjectList/ProjectListItem.jsx:211 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "Copier le projet" -#: components/TemplateList/TemplateListItem.jsx:207 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "Copier le modèle" -#: screens/Project/ProjectList/ProjectListItem.jsx:166 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "Copier la révision complète dans le Presse-papiers." -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "Copyright" -#: screens/Template/shared/JobTemplateForm.jsx:406 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "Créer" -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "Créer une nouvelle application" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "Créer de nouvelles informations d’identification" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "Créer un nouvel hôte" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "Créer un nouveau modèle de Job" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "Créer un nouveau modèle de notification" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "Créer une nouvelle organisation" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "Créer un nouveau projet" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "Créer une nouvelle programmation" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "Créer une nouvelle équipe" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "Créer un nouvel utilisateur" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "Créer un nouveau modèle de flux de travail" -#: screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "Créer un nouvel inventaire smart avec le filtre appliqué" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "Créer un nouveau groupe de conteneurs" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "Créer un nouveau type d'informations d'identification." -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "Créer un nouveau type d'informations d'identification." -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "Créer un nouvel environnement d'exécution" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "Créer un nouveau groupe" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "Créer un nouvel hôte" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "Créer un nouveau groupe d'instances" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "Créer un nouvel inventaire" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "Créer un nouvel inventaire smart" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "Créer une nouvelle source" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "Créer un jeton d'utilisateur" -#: 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:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:182 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:134 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "Créé" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:158 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: 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:190 -#: components/TemplateList/TemplateList.jsx:208 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:137 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 -#: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:151 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: 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:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "Créé par (Nom d'utilisateur)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "Créé par (nom d'utilisateur)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: 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:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 -#: util/getRelatedResourceDeleteDetails.js:173 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 +#: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "Information d’identification" -#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:73 msgid "Credential Input Sources" msgstr "Sources en entrée des informations d'identification" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "Nom d’identification" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "Type d'informations d’identification" -#: routeConfig.jsx:115 -#: 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 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "Types d'informations d'identification" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "Informations d'identification introuvables." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "Mots de passes d’identification" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "Jeton pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \"Kubernetes/OpenShift API Bearer Token\". S'il est laissé vide, le compte de service du Pod sous-jacent sera utilisé." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "Identifiant pour s'authentifier auprès d'un registre de conteneur protégé." -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." 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: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/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: 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:374 -#: util/getRelatedResourceDeleteDetails.js:97 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 +#: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "Informations d’identification" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:54 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "Les informations d'identification qui nécessitent un mot de passe au lancement ne sont pas autorisées. Veuillez supprimer ou remplacer les informations d'identification suivantes par des informations d'identification du même type pour pouvoir continuer : {0}" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "Page actuelle" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "Spécifications des pods personnalisés" -#: components/TemplateList/TemplateListItem.jsx:144 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "L'environnement virtuel personnalisé {0} doit être remplacé par un environnement d'exécution." -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:53 -msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -msgstr "L'environnement virtuel personnalisé {virtualEnvironment} doit être remplacé par un environnement d'exécution." +#: components/TemplateList/TemplateListItem.js:155 +msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "Personnaliser les messages..." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "Personnaliser les spécifications du pod" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "SUPPRIMÉ" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "Tableau de bord" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "Tableau de bord (toutes les activités)" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "Durée de conservation des données" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 -#: components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "Jour" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:173 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 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.js:108 msgid "Days remaining" msgstr "Jours restants" -#: screens/Job/JobOutput/JobOutput.jsx:698 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "Déboguer" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "Décembre" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "Par défaut" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "Environnement d'exécution par défaut" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "Réponse par défaut" -#: screens/Setting/SettingList.jsx:102 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "Définir les fonctions et fonctionnalités niveau système" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:235 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:246 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: 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: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:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "Supprimer" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "Supprimer les groupes et les hôtes" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:278 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "Supprimer les informations d’identification" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "Supprimer l'environnement d'exécution" -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "Supprimer l'hôte" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "Supprimer l’inventaire" -#: screens/Job/JobDetail/JobDetail.jsx:397 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "Supprimer Job" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "Modèle de découpage de Job" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:348 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "Supprimer la notification" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "Supprimer l'organisation" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "Suppression du projet" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "Supprimer les questions" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "Supprimer la programmation" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "Supprimer le questionnaire" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "Supprimer l’équipe" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "Supprimer l’utilisateur" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "Supprimer un jeton d'utilisateur" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "Supprimer l'approbation du flux de travail" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "Supprimer le modèle de flux de travail " -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "Supprimer tous les nœuds" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "Supprimer l’application" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "Supprimer le type d'informations d’identification" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "Supprimer l'erreur" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "Supprimer un groupe d'instances" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "Supprimer la source de l'inventaire" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:73 -msgid "Delete on Update" -msgstr "Supprimer lors de la mise à jour" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "Supprimer l'inventaire smart" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1818,1562 +1817,1618 @@ msgid "" "of time required to complete an update." msgstr "Supprimez le dépôt local dans son intégralité avant d'effectuer une mise à jour. En fonction de la taille du dépôt, cela peut augmenter considérablement le temps nécessaire pour effectuer une mise à jour." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 +msgid "Delete the project before syncing" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "Supprimer ce lien" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "Supprimer ce nœud" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "Supprimer {pluralizedItemName} ?" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "Supprimé" -#: components/TemplateList/TemplateList.jsx:268 -#: screens/Credential/CredentialList/CredentialList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:230 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "Erreur de suppression" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "Erreur de suppression" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "Refusé" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "Refusé - {0}. Voir le flux d'activité pour plus d'informations." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "Refusé par {0} - {1}" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "Refuser" -#: screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "Obsolète" -#: 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:186 -#: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:227 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: 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/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:57 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: 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:148 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: 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:246 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: 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:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "Description" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:251 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "Canaux de destination" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "Canaux ou utilisateurs de destination" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "Numéro(s) de SMS de destination" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "Numéro(s) de SMS de destination" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "Canaux de destination" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "Canaux ou utilisateurs de destination" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:61 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:71 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:63 -#: screens/InstanceGroup/InstanceGroup.jsx:64 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:144 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:37 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "Détails" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "Onglet Détails" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:240 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:294 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "Désactiver la vérification SSL" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "Désactiver la vérification SSL" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "Dissocier" -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "Dissocier le groupe de l'hôte ?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "Dissocier Hôte du Groupe" -#: screens/InstanceGroup/Instances/InstanceList.jsx:190 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "Dissocier l'instance du groupe d'instances ?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "Dissocier le(s) groupe(s) lié(s) ?" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "Dissocier la ou les équipes liées ?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "Dissocier le rôle" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "Dissocier le rôle !" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "Dissocier ?" -#: screens/Template/shared/JobTemplateForm.jsx:480 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 +msgid "Discard local changes before syncing" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." msgstr "Diviser le travail effectué à l'aide de ce modèle de travail en un nombre spécifié de tranches de travail (job), chacune exécutant les mêmes tâches sur une partie de l'inventaire." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "Documentation." -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "Terminé" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "Télécharger la sortie" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "E-mail" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "Options d'email" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:162 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" "executing job tasks." msgstr "Chaque fois qu’une tâche s’exécute avec cet inventaire, réalisez une mise à jour de la source sélectionnée avant de lancer les tâches du job." -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." msgstr "Chaque fois qu’un job s’exécute avec ce projet, réalisez une mise à jour du projet avant de démarrer le job." -#: components/Schedule/ScheduleDetail/ScheduleDetail.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:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:200 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:149 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:153 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx: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: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 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "Modifier" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "Modifier les informations d’identification" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "Modifier la configuration du plug-in Configuration" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:46 -#: screens/Setting/Settings.jsx:49 -#: screens/Setting/Settings.jsx:53 -#: screens/Setting/Settings.jsx:56 -#: screens/Setting/Settings.jsx:59 -#: screens/Setting/Settings.jsx:62 -#: screens/Setting/Settings.jsx:65 -#: screens/Setting/Settings.jsx:68 -#: screens/Setting/Settings.jsx:71 -#: screens/Setting/Settings.jsx:74 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:93 -#: screens/Setting/Settings.jsx:96 -#: screens/Setting/Settings.jsx:99 -#: screens/Setting/Settings.jsx:102 -#: screens/Setting/Settings.jsx:105 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Settings.jsx:111 -#: screens/Setting/Settings.jsx:114 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "Modifier les détails" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "Modifier l'environnement d'exécution" -#: screens/Host/HostGroups/HostGroupItem.jsx:50 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "Modifier le groupe" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "Modifier l’hôte" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "Modifier l'inventaire" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "Modifier le lien" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "Modifier le nœud" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "Modèle de notification de modification" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "Modifier l'organisation" -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Project/ProjectList/ProjectListItem.jsx:202 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "Modifier le projet" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "Modifier la question" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "Modifier la programmation" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:122 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "Modifier la source" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "Modifier l’équipe" -#: components/TemplateList/TemplateListItem.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:198 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:129 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "Modifier le modèle" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "Modifier l’utilisateur" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "Modifier l’application" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "Modifier le type d’identification" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "Modifier les détails" -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "Modifier le groupe" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "Modifier l’hôte" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "Modifier le groupe d'instances" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "Modifier ce lien" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "Modifier ce nœud" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 +msgid "Edit workflow" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "Écoulé" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "Temps écoulé" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 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:155 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:71 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "Email" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" 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:274 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "Activer les tâches parallèles" -#: screens/Template/shared/JobTemplateForm.jsx:609 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "Utiliser le cache des faits" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:215 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "Activer/désactiver la vérification de certificat HTTPS" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -msgid "Enable Privilege Escalation" -msgstr "Activer l’élévation des privilèges" - -#: screens/Template/shared/JobTemplateForm.jsx:583 -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "Activer le webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "Activez le webhook pour ce modèle de flux de travail." -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -msgid "Enable Webhooks" -msgstr "Activer le webhook" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:159 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "Activer la journalisation externe" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:191 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "Activer le système de journalisation traçant des facts individuellement" -#: components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "Activer l’élévation des privilèges" -#: screens/Setting/SettingList.jsx:56 -msgid "Enable simplified login for your {brandName} applications" -msgstr "Activez la connexion simplifiée pour vos applications de {nomdelabrande}" +#: screens/Setting/SettingList.js:52 +msgid "Enable simplified login for your {0} applications" +msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:589 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "Activez le webhook pour ce modèle de tâche." -#: components/Lookup/HostFilterLookup.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "Activé" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 +msgid "Enabled Options" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "Valeur activée" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "Variable activée" -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" -"callback URL. Using the URL a host can contact {BrandName}\n" +"callback URL. Using the URL a host can contact {0}\n" "and request a configuration update using this job\n" "template." -msgstr "Permet la création d'une URL de rappel\n" -"de rappel de provisionnement. En utilisant cette URL, un hôte peut contacter {BrandName}\n" -"et demander une mise à jour de la configuration en utilisant ce\n" -"modèle de job." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:232 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" "and request a configuration update using this job\n" "template" -msgstr "Permet la création d'une URL de rappel\n" +msgstr "" +"Permet la création d'une URL de rappel\n" "de rappel. En utilisant cette URL, un hôte peut contacter {nomdelabrand}\n" "et demander une mise à jour de la configuration en utilisant ce\n" "modèle de job." -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:155 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "Crypté" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "Fin" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "Contrat de licence utilisateur" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -msgid "End date/time" -msgstr "Date/Heure de fin" - -#: components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "La fin ne correspondait pas à une valeur attendue" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "Contrat de licence utilisateur" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "Veuillez saisir une expression de recherche au moins pour créer un nouvel inventaire Smart." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Entrez les injecteurs avec la syntaxe JSON ou YAML. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Entrez les variables avec la syntaxe JSON ou YAML. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe." -#: screens/Inventory/shared/SmartInventoryForm.jsx:97 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe." -#: screens/Inventory/shared/InventoryForm.jsx:93 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "Entrez une balise d'annotation par ligne, sans virgule." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." msgstr "Saisir un canal IRC ou un nom d'utilisateur par ligne. Le symbole dièse (#) pour les canaux et (@) pour le utilisateurs, ne sont pas nécessaires." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." msgstr "Saisir un canal Slack par ligne. Le symbole dièse (#) est exigé pour les canaux." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." msgstr "Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." msgstr "Saisir un numéro de téléphone par ligne pour spécifier où envoyer les messages SMS." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." msgstr "Numéro associé au \"Service de messagerie\" de Twilio sous le format +18005550199." -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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 "Saisissez les variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>Tower." -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "Saisissez les variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>aws_ec2." -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "Entrez les variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>azure_rm." -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "Saisissez les variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>foreman." -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "Entrez des variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>gcp_compute." -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "Saisissez les variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration des plugins <1>openstack." -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "Saisissez les variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>ovirt." -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "Entrez des variables pour configurer la source d'inventaire. Pour une description détaillée de la configuration de ce plugin, voir <0>Les plugins d'inventaire dans la documentation et le guide de configuration du plugin <1>vmware_vm_inventory." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Entrez les variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux." -#: components/JobList/JobList.jsx:202 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 -#: screens/Job/JobOutput/JobOutput.jsx:703 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "Erreur" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:415 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/Project/ProjectList/ProjectList.js:289 +msgid "Error fetching updated project" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "Message d'erreur" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:424 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "Corps du message d'erreur" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "Erreur lors de la sauvegarde du flux de travail !" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:51 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: 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:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:232 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: 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:193 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:197 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceList.jsx:230 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: 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: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: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:227 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:235 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:231 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: 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: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: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:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "Erreur !" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "Erreur :" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:670 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "Événement" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "Afficher les détails de l’événement" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "Détail de l'événement modal" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "Récapitulatif de l’événement non disponible" -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "Événements" -#: components/Search/AdvancedSearch.jsx:167 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "Correspondance exacte (recherche par défaut si non spécifiée)." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: components/Search/AdvancedSearch.js:165 +msgid "Exact search on id field." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "Voici des exemples d'URL pour le contrôle des sources de GIT :" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "Voici des exemples d'URL pour Remote Archive SCM :" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "Exemples d’URL pour le SCM Subversion :" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "Voici quelques exemples :" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "Exemples :" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "Exécuter quel que soit l'état final du nœud parent." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "Exécuter lorsque le nœud parent se trouve dans un état de défaillance." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "Exécuter lorsque le nœud parent se trouve dans un état de réussite." -#: components/AdHocCommands/AdHocCommandsWizard.jsx:85 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:72 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "Environnement d'exécution" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 -#: routeConfig.jsx:140 -#: 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 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 -#: screens/Organization/Organizations.jsx:34 -#: util/getRelatedResourceDeleteDetails.js:87 -#: util/getRelatedResourceDeleteDetails.js:194 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 +msgid "Execution Environment Missing" +msgstr "" + +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 +#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "Environnements d'exécution" -#: screens/Job/JobDetail/JobDetail.jsx:227 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "Nœud d'exécution" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -msgid "Execution environment image" -msgstr "Image de l'environnement d'exécution" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:78 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "L'environnement d'exécution est absent ou supprimé." -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -msgid "Execution environment name" -msgstr "Nom de l'environnement d'exécution" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "Environnement d'exécution non trouvé." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "Sortir sans sauvegarder" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "Développer" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "Développer l'entrée" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "On s'attendait à ce qu'au moins un des éléments suivants soit présent dans le fichier : client_email, project_id ou private_key." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -msgid "Expiration" -msgstr "Expiration" - -#: 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 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "Expire" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "Expire le" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "Expire UTC" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "Expire le {0}" -#: components/JobList/JobListItem.jsx:240 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "Explication" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "Système externe de gestion des secrets" -#: components/AdHocCommands/AdHocDetailsStep.jsx:295 -#: components/AdHocCommands/AdHocDetailsStep.jsx:296 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "Variables supplémentaires" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 -#: screens/Project/ProjectList/ProjectListItem.jsx:76 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "TERMINÉ :" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 +msgid "Fact Storage" +msgstr "" + +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "Faits" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "Échec" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "Échec du comptage des hôtes" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "Échec Hôtes" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "Échec des hôtes" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "Jobs ayant échoué" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "N'a pas approuvé un ou plusieurs flux de travail." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "N'a pas approuvé le flux de travail." -#: components/ResourceAccessList/ResourceAccessList.jsx:235 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "Impossible d'assigner les rôles correctement" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js: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:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "N'a pas réussi à associer." -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "N'a pas réussi à annuler la synchronisation des sources d'inventaire." -#: screens/Project/ProjectDetail/ProjectDetail.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:181 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "Échec de l'annulation de Project Sync" -#: components/JobList/JobList.jsx:288 +#: components/JobList/JobList.js:302 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:390 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "Échec de l'annulation {0}" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "N'a pas réussi à copier les identifiants" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "Échec de la copie de l'environnement d'exécution" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "N'a pas réussi à copier l'inventaire." -#: screens/Project/ProjectList/ProjectListItem.jsx:219 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "Le projet n'a pas été copié." -#: components/TemplateList/TemplateListItem.jsx:212 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "Impossible de copier le modèle." -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "N'a pas réussi à supprimer l’application" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "N'a pas réussi à supprimer l’identifiant." -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "Échec de la suppression du groupe {0}." -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "N'a pas réussi à supprimer l'hôte." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "Échec de la suppression de la source d'inventaire {nom}." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "N'a pas réussi à supprimer l'inventaire." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "N'a pas réussi à supprimer le modèle de Job." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:363 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "N'a pas réussi à supprimer la notification." -#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 msgid "Failed to delete one or more applications." msgstr "N'a pas réussi à supprimer une ou plusieurs applications" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:212 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:200 +#: screens/Credential/CredentialList/CredentialList.js:197 msgid "Failed to delete one or more credentials." msgstr "N'a pas réussi à supprimer un ou plusieurs identifiants." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:225 msgid "Failed to delete one or more execution environments" msgstr "Échec de la suppression d'un ou plusieurs environnements d'exécution" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "N'a pas réussi à supprimer un ou plusieurs groupes." -#: screens/Host/HostList/HostList.jsx:220 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 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:271 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 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:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 msgid "Failed to delete one or more inventories." msgstr "N'a pas réussi à supprimer un ou plusieurs inventaires." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 +#: screens/Inventory/InventorySources/InventorySourceList.js:260 msgid "Failed to delete one or more inventory sources." msgstr "N'a pas réussi à supprimer une ou plusieurs sources d'inventaire." -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 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:277 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "N'a pas réussi à supprimer un ou plusieurs Jobs." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 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:208 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "N'a pas réussi à supprimer une ou plusieurs organisations." -#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "N'a pas réussi à supprimer un ou plusieurs projets." -#: components/Schedule/ScheduleList/ScheduleList.jsx:235 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "N'a pas réussi à supprimer une ou plusieurs progammations." -#: screens/Team/TeamList/TeamList.jsx:203 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "N'a pas réussi à supprimer une ou plusieurs équipes." -#: components/TemplateList/TemplateList.jsx:274 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "N'a pas réussi à supprimer un ou plusieurs modèles." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "N'a pas réussi à supprimer un ou plusieurs jetons." -#: screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.js:205 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:196 +#: screens/User/UserList/UserList.js:193 msgid "Failed to delete one or more users." msgstr "N'a pas réussi à supprimer un ou plusieurs utilisateurs." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "N'a pas réussi à supprimer une ou plusieurs approbations de flux de travail." -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:180 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "N'a pas réussi à supprimer l'organisation." -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "N'a pas réussi à supprimer le projet." -#: components/ResourceAccessList/ResourceAccessList.jsx:246 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "N'a pas réussi à supprimer le rôle" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "N'a pas réussi à supprimer le rôle." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "N'a pas réussi à supprimer la programmation." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "N'a pas réussi à supprimer l'inventaire smart." -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "N'a pas réussi à supprimer l'équipe." -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "Impossible de supprimer l'utilisateur." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "N'a pas réussi à supprimer l'approbation du flux de travail." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "N'a pas réussi à supprimer le modèle de flux de travail." -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "Échec de la suppression de {nom}." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "N'a pas refusé d'approuver un ou plusieurs flux de travail." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 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:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "N'a pas réussi à dissocier un ou plusieurs groupes." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "N'a pas réussi à dissocier un ou plusieurs hôtes." -#: screens/InstanceGroup/Instances/InstanceList.jsx:235 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "N'a pas réussi à dissocier une ou plusieurs instances." -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "N'a pas réussi à dissocier une ou plusieurs équipes." -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "Impossible de récupérer les paramètres de configuration de connexion personnalisés. Les paramètres par défaut du système seront affichés à la place." -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:176 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: screens/Project/ProjectList/ProjectList.js:293 +msgid "Failed to fetch the updated project data." +msgstr "" + +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "Echec du lancement du Job." -#: contexts/Config.jsx:71 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "Impossible de récupérer la configuration." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "Echec de la récupération de l'objet ressource de noeud complet." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "Impossible de récupérer les informations d'identification des nœuds." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "Échec de l'envoi de la notification de test." -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "Impossible de synchroniser la source de l'inventaire." -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "Échec de la synchronisation du projet." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 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." -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "Impossible de changer d'hôte." -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "N'a pas réussi à faire basculer l'instance." -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "N'a pas réussi à basculer la notification." -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "Impossible de basculer le calendrier." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:233 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "Échec de la mise à jour de l'ajustement des capacités." -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "N'a pas réussi à mettre à jour l'enquête." -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "Échec du jeton d'utilisateur." -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "Échec" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "Faux" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "Février" -#: components/Search/AdvancedSearch.jsx:179 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "Le champ contient une valeur." -#: components/Search/AdvancedSearch.jsx:203 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "Le champ se termine par une valeur." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Champ permettant de passer une spécification de pod Kubernetes ou OpenShift personnalisée." -#: components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "Le champ correspond à l'expression régulière donnée." -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "Le champ commence par la valeur." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "Cinquième" -#: screens/Job/JobOutput/JobOutput.jsx:687 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "Écart entre les fichiers" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "Téléchargement de fichier rejeté. Veuillez sélectionner un seul fichier .json." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "Fichier, répertoire ou script" -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "Heure de Fin" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "Terminé" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "Première" -#: components/AddRole/AddResourceRole.jsx:129 -#: components/AddRole/AddResourceRole.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:132 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: 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:100 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "Prénom" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "Première exécution" -#: components/ResourceAccessList/ResourceAccessList.jsx:181 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "Prénom" -#: components/Search/AdvancedSearch.jsx:266 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "Tout d'abord, sélectionnez une clé" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "Adapter le graphique à la taille de l'écran disponible" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "Flottement" -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Follow" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3381,433 +3436,443 @@ msgid "" "executing the playbook." msgstr "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." msgstr "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "Pour plus d'informations, reportez-vous à" -#: components/AdHocCommands/AdHocDetailsStep.jsx:184 -#: components/AdHocCommands/AdHocDetailsStep.jsx:185 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:425 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "Forks" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "Quatrième" -#: components/Schedule/shared/ScheduleForm.jsx:183 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "Informations sur la fréquence" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 -#: components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 +#: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "La fréquence ne correspondait pas à une valeur attendue" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "Ven." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "Vendredi" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: components/Search/AdvancedSearch.js:172 +msgid "Fuzzy search on id, name or description fields." +msgstr "" + +#: components/Search/AdvancedSearch.js:159 +msgid "Fuzzy search on name field." +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "Informations d’identification Galaxy" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "Les identifiants Galaxy doivent appartenir à une Organisation." -#: screens/Job/JobOutput/JobOutput.jsx:695 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "Collecte des faits" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "Obtenir un abonnement" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "Obtenir des abonnements" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:145 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "Git" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "GitHub (Par défaut)" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:63 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "Organisation GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:66 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "GitHub Enterprise Team" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "Organisation GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "GitHub Team" -#: screens/Setting/SettingList.jsx:64 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "Paramètres de GitHub" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "Environnement d'exécution global par défaut" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "Disponible dans le monde entier" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "L'environnement d'exécution disponible globalement ne peut pas être réaffecté à une organisation spécifique" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "Allez à la première page" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "Allez à la dernière page de la liste" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "Allez à la page suivante de la liste" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "Obtenir la page précédente" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: screens/Setting/SettingList.jsx:68 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "Paramètres de Google OAuth 2" -#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "Google OAuth2" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "Grafana" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "Clé API Grafana" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:117 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "URL Grafana" -#: components/Search/AdvancedSearch.jsx:227 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "Supérieur à la comparaison." -#: components/Search/AdvancedSearch.jsx:233 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "Supérieur ou égal à la comparaison." -#: components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "Groupe" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "Détails du groupe" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "Type de groupe" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:232 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 -#: util/getRelatedResourceDeleteDetails.js:125 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 +#: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "Groupes" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:306 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "En-têtes HTTP" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:301 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "Méthode HTTP" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "Aide" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "Masquer" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "Masquer la description" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "HipChat" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:83 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "Hôte" -#: screens/Job/JobOutput/JobOutput.jsx:682 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "Échec de désynchronisation des hôtes" -#: screens/Job/JobOutput/JobOutput.jsx:681 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "Désynchronisation des hôtes OK" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:642 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "Clé de configuration de l’hôte" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "Nombre d'hôtes" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "Détails sur l'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:673 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "Échec de l'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:676 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "Échec de l'hôte" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "Filtre d'hôte" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "Nom d'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:675 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "Hôte OK" -#: screens/Job/JobOutput/JobOutput.jsx:680 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "Interrogation de l'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "Nouvel essai de l'hôte" -#: screens/Job/JobOutput/JobOutput.jsx:677 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "Hôte ignoré" -#: screens/Job/JobOutput/JobOutput.jsx:674 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "Hôte démarré" -#: screens/Job/JobOutput/JobOutput.jsx:678 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "Hôte inaccessible" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "Informations sur l'hôte" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "Détails sur l'hôte modal" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "Hôte non trouvé." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 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: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 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: 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 -#: util/getRelatedResourceDeleteDetails.js:129 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 +#: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "Hôtes" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "Hôtes disponibles" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "Hôtes restants" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "Hôtes utilisés" - -#: components/Schedule/shared/ScheduleForm.jsx:161 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "Heure" -#: components/JobList/JobList.jsx:169 -#: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "ID du tableau de bord (facultatif)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "ID du panneau (facultatif)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "ID du tableau de bord (facultatif)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "ID du panneau (facultatif)" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "IRC Nick" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "Adresse du serveur IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "Port du serveur IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "IRC nick" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "Adresse du serveur IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "Mot de passe du serveur IRC" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "Port du serveur IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:235 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "Icône URL" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" "on the external source." msgstr "Si cochées, toutes les variables des groupes et hôtes dépendants seront supprimées et remplacées par celles qui se trouvent dans la source externe." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -3818,430 +3883,459 @@ msgid "" "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. 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:559 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." msgstr "Si activé, exécuter ce playbook en tant qu'administrateur." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--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:499 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible." -#: components/AdHocCommands/AdHocDetailsStep.jsx:205 +#: components/AdHocCommands/AdHocDetailsStep.js:200 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:603 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de tâche en simultané." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 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:610 +#: screens/Template/shared/JobTemplateForm.js:613 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" "injected into the fact cache at runtime." msgstr "Si cette option est activée, les données recueillies seront stockées afin de pouvoir être consultées au niveau de l'hôte. Les 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.js:151 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "Si vous êtes prêt à mettre à niveau ou à renouveler, veuillez <0>nous contacter." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." msgstr "Si vous ne disposez pas d'un abonnement, vous pouvez vous rendre sur le site de Red Hat pour obtenir un abonnement d'essai." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "Si vous souhaitez uniquement supprimer l'accès de cet utilisateur particulier, veuillez le supprimer de l'équipe." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" msgstr "Si vous voulez que la source de l'inventaire soit mise à jour au lancement et à la mise à jour du projet, cliquez sur Mettre à jour au lancement, et aller à" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: 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:99 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "Image" -#: screens/Job/JobOutput/JobOutput.jsx:690 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "Ajout de fichier" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." msgstr "Indique si un hôte est disponible et doit être inclus dans les Jobs en cours. Pour les hôtes qui font partie d'un inventaire externe, cela peut être réinitialisé par le processus de synchronisation de l'inventaire." -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "Info" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "Initié par" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "Initié par" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "Initié par (nom d'utilisateur)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "Configuration d'Injector" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "Configuration de l'entrée" -#: screens/Inventory/shared/InventoryForm.jsx:78 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "Insights - Information d’identification" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "Insights - Plateforme d'automatisation Ansible" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Insights - Tableau de bord de la plate-forme d'automatisation Ansible" -#: components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "ID du système Insights" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "Instance" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "Filtres de l'instance" -#: screens/Job/JobDetail/JobDetail.jsx:230 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "Groupe d'instance" -#: 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: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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "Groupes d'instances" -#: components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "ID d'instance" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "Groupe d'instance" -#: screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "Groupe d'instance non trouvé." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 +msgid "Instance group used capacity" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "Groupes d'instances" -#: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "Instances" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "Entier relatif" -#: util/validators.jsx:67 +#: util/validators.js:88 msgid "Invalid email address" msgstr "Adresse électronique invalide" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "Format de fichier non valide. Veuillez télécharger un manifeste d'abonnement à Red Hat valide." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "Cible de lien invalide. Impossible d'établir un lien avec les dépendants ou les nœuds des ancêtres. Les cycles de graphiques ne sont pas pris en charge." -#: screens/Login/Login.jsx:135 +#: util/validators.js:33 +msgid "Invalid time format" +msgstr "" + +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "Nom d’utilisateur et/ou mot de passe non valide. Veuillez réessayer." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 -#: util/getRelatedResourceDeleteDetails.js:66 -#: util/getRelatedResourceDeleteDetails.js:208 -#: util/getRelatedResourceDeleteDetails.js:276 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 +#: util/getRelatedResourceDeleteDetails.js:201 +#: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "Inventaires" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "Les inventaires et les sources ne peuvent pas être copiés" -#: components/HostForm/HostForm.jsx:30 -#: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:253 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:164 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:47 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "Inventaire" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "Inventaire (nom)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "Fichier d'inventaire" -#: components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "ID Inventaire" -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "Sources d'inventaire" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "Sync Source d’inventaire" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:102 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "Erreur de synchronisation de la source de l'inventaire" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: util/getRelatedResourceDeleteDetails.js:73 -#: util/getRelatedResourceDeleteDetails.js:153 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 +#: util/getRelatedResourceDeleteDetails.js:66 +#: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "Sources d'inventaire" -#: components/JobList/JobList.jsx:181 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "Sync Inventaires" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "Mise à jour de l'inventaire" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "Fichier d'inventaire" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "Inventaire non trouvé." -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "Synchronisation des inventaires" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "Erreurs de synchronisation des inventaires" -#: screens/Job/JobOutput/JobOutput.jsx:684 +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "Échec de l'élément" -#: screens/Job/JobOutput/JobOutput.jsx:683 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "Élément OK" -#: screens/Job/JobOutput/JobOutput.jsx:685 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "Élément ignoré" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "Éléments" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "Éléments par page" -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:90 -#: screens/Project/ProjectList/ProjectListItem.jsx:69 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "ID JOB :" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "JSON" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "Onglet JSON" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "JSON :" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "Janvier" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "Job" -#: components/JobList/JobListItem.jsx:96 -#: 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 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "Erreur d'annulation d'un Job" -#: screens/Job/JobDetail/JobDetail.jsx:410 -#: screens/Job/JobOutput/JobOutput.jsx:852 -#: screens/Job/JobOutput/JobOutput.jsx:853 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "Erreur de suppression d’un Job" -#: screens/Job/JobDetail/JobDetail.jsx:243 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "Découpage de job" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:479 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "Découpage de job" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "Statut Job" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:220 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:292 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:520 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "Balises Job" -#: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:199 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:29 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "Modèle de Job" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:40 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "Les informations d'identification par défaut du modèle de Job doivent être remplacées par une information du même type. Veuillez sélectionner un justificatif d'identité pour les types suivants afin de procéder : {0}" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 -#: util/getRelatedResourceDeleteDetails.js:107 -#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:100 +#: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "Modèles de Jobs" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "Les modèles de Job dont l'inventaire ou le projet est manquant ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds. Sélectionnez un autre modèle ou corrigez les champs manquants pour continuer." @@ -4249,696 +4343,694 @@ msgstr "Les modèles de Job dont l'inventaire ou le projet est manquant ne peuve msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Les modèles de Job dont les informations d'identification demandent un mot de passe ne peuvent pas être sélectionnés lors de la création ou de la modification de nœuds" -#: components/JobList/JobList.jsx:177 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:251 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "Type de Job" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "Statut Job" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "Onglet Graphique de l'état des Jobs" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "Modèles de Jobs" -#: components/JobList/JobList.jsx:160 -#: components/JobList/JobList.jsx:236 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:74 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:73 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:90 -#: screens/Setting/Settings.jsx:72 -#: screens/Template/Template.jsx:164 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "Jobs" -#: screens/Setting/SettingList.jsx:95 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "Paramètres Job" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "Juillet" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "Juin" -#: components/Search/AdvancedSearch.jsx:132 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "Clé" -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "Sélection de la clé" -#: components/Search/AdvancedSearch.jsx:126 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "En-tête de la clé" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "Mot-clé " -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "LDAP" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "LDAP 1" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "LDAP 2" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "LDAP 3" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "LDAP 4" -#: screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "LDAP 5" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "Défaut LDAP" -#: screens/Setting/SettingList.jsx:72 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "Paramètres LDAP" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "LDAP1" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "LDAP2" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "LDAP3" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "LDAP4" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:173 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "Nom du label" -#: components/JobList/JobListItem.jsx:225 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:187 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:102 -#: components/TemplateList/TemplateListItem.jsx:306 -#: screens/Job/JobDetail/JobDetail.jsx:277 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:392 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "Libellés" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "Dernier" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "Statut du dernier Job" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "Dernière connexion" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:282 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:187 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "Dernière modification" -#: components/AddRole/AddResourceRole.jsx:133 -#: components/AddRole/AddResourceRole.jsx:147 -#: components/ResourceAccessList/ResourceAccessList.jsx:136 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: 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:106 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "Nom" -#: components/TemplateList/TemplateList.jsx:222 -#: components/TemplateList/TemplateListItem.jsx:153 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "Dernière exécution" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "Dernière exécution" -#: components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "Dernier Job" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -msgid "Last job run" -msgstr "Dernière exécution du Job" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "Dernière modification" -#: components/ResourceAccessList/ResourceAccessList.jsx:182 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "Nom" -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "Dernière utilisation" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:106 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "Lancer" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "Lancer le job de gestion" -#: components/TemplateList/TemplateListItem.jsx:173 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "Lacer le modèle." -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "Lancer le Job de gestion" -#: components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "Lancer le modèle" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "Lancer le flux de travail" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "Lancement | {0}" -#: components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "Lancé par" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "Lancé par (Nom d'utilisateur)" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "En savoir plus sur Insights pour Ansible Automation Platform" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "Laissez ce champ vide pour rendre l'environnement d'exécution globalement disponible." -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "Légende" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "Moins que la comparaison." -#: components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "Moins ou égal à la comparaison." -#: components/AdHocCommands/AdHocDetailsStep.jsx:164 -#: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:207 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:76 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:441 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "Limite" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "Lien vers un nœud disponible" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "Chargement en cours..." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "Fuseau horaire local" -#: components/Schedule/shared/ScheduleForm.jsx:138 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "Fuseau horaire local" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "Connexion" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -msgid "Log aggregator test sent successfully." -msgstr "Envoi réussi du test de l'agrégateur de journalisation." - -#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "Journalisation" -#: screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "Paramètres de journalisation" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:166 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "Déconnexion" -#: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "Recherche modale" -#: components/Search/AdvancedSearch.jsx:150 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "Sélection de la recherche" -#: components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "Type de recherche" -#: components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "Recherche par type" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 -#: screens/Project/ProjectList/ProjectListItem.jsx:67 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "DERNIÈRE SYNCHRONISATION" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:249 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "Informations d’identification de la machine" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:98 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "Informations d’identification de la machine" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -msgid "Managed by Tower" -msgstr "Géré par Tower" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 +msgid "Managed" +msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "Nœuds gérés" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:37 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "Job de gestion" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "Jobs de gestion" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "Job de gestion" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "Erreur de lancement d'un job de gestion" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "Job de gestion non trouvé." -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "Jobs de gestion" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:76 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: 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:144 -#: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "Manuel" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "Mars" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "Mattermost" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "Nombre d'hôtes max." -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "Maximum" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "Longueur maximale" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "Mai" -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "Membres" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "Métadonnées" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "Métrique" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "Métriques" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "Minimum" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "Longueur minimale" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:33 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "Nombre minimum statique d'instances qui seront automatiquement assignées à ce groupe lors de la mise en ligne de nouvelles instances." -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:43 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "Le pourcentage minimum de toutes les instances qui seront automatiquement assignées à ce groupe lorsque de nouvelles instances seront mises en ligne." -#: components/Schedule/shared/ScheduleForm.jsx:160 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "Minute" -#: screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.js:96 +msgid "Miscellaneous Authentication" +msgstr "" + +#: screens/Setting/SettingList.js:106 +msgid "Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "Système divers" -#: screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "Réglages divers du système" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "Manquant" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:75 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "Ressource manquante" -#: components/Lookup/HostFilterLookup.jsx:357 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 -#: screens/User/UserTokenList/UserTokenList.jsx:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "Modifié" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:162 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:212 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:141 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 -#: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:155 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: 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:144 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "Modifié par (nom d'utilisateur)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "Modifié par (nom d'utilisateur)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "Module" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "Lun." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "Lundi" -#: components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "Mois" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "Plus d'informations" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "Plus d'informations pour" -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "Multi-Select" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "Options à choix multiples." -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "Options à choix multiples (sélection multiple)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "Options à choix multiples (une seule sélection)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "Options à choix multiples." -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:153 -#: components/AddRole/AddResourceRole.jsx:169 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: 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: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: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: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:161 -#: components/Schedule/ScheduleList/ScheduleList.jsx:181 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:187 -#: components/TemplateList/TemplateList.jsx:220 -#: components/TemplateList/TemplateListItem.jsx:126 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -4951,291 +5043,307 @@ msgstr "Options à choix multiples." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: 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:128 -#: screens/Credential/CredentialList/CredentialList.jsx:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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: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: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:91 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupsList.jsx:158 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: 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:240 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: 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: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:49 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: 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:143 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: 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: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:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:131 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:168 -#: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx: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:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: 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:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "Nom" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "Navigation" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "Jamais" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "Jamais mis à jour" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "N'expire jamais" -#: components/JobList/JobList.jsx:196 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "Nouveau" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:80 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:135 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "Suivant" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:163 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "Exécution suivante" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:262 msgid "No" msgstr "Non" -#: screens/Job/JobOutput/JobOutput.jsx:691 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "Aucun hôte correspondant" -#: screens/Job/JobOutput/JobOutput.jsx:679 -#: screens/Job/JobOutput/JobOutput.jsx:692 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "Aucun hôte restant" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "Pas de JSON disponible" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "Aucun Job" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "Aucune erreur standard disponible" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "Aucune sortie standard disponible" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "Aucune erreurs de synchronisation des inventaires" -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "Aucun objet trouvé." -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "Aucun résultat trouvé" -#: components/Search/AdvancedSearch.jsx:100 -#: components/Search/AdvancedSearch.jsx:136 -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "Aucun résultat trouvé" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "Aucun abonnement trouvé" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "Aucune question d'enquête trouvée." -#: components/PaginatedDataList/PaginatedDataList.jsx:88 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "Aucun {pluralizedItemName} trouvé" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "Type de nœud" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "Type de nœud" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "Aucun" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "Aucun (Éxecution unique)" -#: components/Schedule/shared/ScheduleForm.jsx:159 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "Aucune (éxecution unique)" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:28 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "Utilisateur normal" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "Introuvable" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "Non configuré" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "Non configuré pour la synchronisation de l'inventaire." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." msgstr "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:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 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" @@ -5243,11 +5351,19 @@ msgid "" "with directly and indirectly." msgstr "Notez que vous pouvez toujours voir le groupe dans la liste après l'avoir dissocié si l'hôte est également membre des dépendants de ce groupe. Cette liste montre tous les groupes auxquels l'hôte est associé directement et indirectement." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "REMARQUE : ce champ suppose que le nom distant est \"origin\"." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -5257,324 +5373,319 @@ msgid "" "password information." msgstr "Remarque : si vous utilisez le protocole SSH pour GitHub ou Bitbucket, entrez uniquement une clé SSH sans nom d’utilisateur (autre que git). De plus, GitHub et Bitbucket ne prennent pas en charge l’authentification par mot de passe lorsque SSH est utilisé. Le protocole GIT en lecture seule (git://) n’utilise pas les informations de nom d’utilisateur ou de mot de passe." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "Couleur des notifications" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "Modèle de notification introuvable." -#: 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 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 +#: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "Modèles de notification" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "Type de notification" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "Couleur de la notification" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "Notification envoyée avec succès" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "La notification a expiré." -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "Type de notification" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:150 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "Notifications" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "Novembre" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "OK" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "Occurrences" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "Octobre" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "Désactivé" -#: components/AdHocCommands/AdHocDetailsStep.jsx:212 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "Le" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "En cas d'échec" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "En cas de succès" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "À la date du" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "Tels jours" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "Grouper seulement par" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "Détails de l'option" -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." msgstr "Libellés facultatifs décrivant ce modèle de job, par exemple 'dev' ou 'test'. Les libellés peuvent être utilisés pour regrouper et filtrer les modèles de job et les jobs terminés." -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "En option, sélectionnez les informations d'identification à utiliser pour renvoyer les mises à jour de statut au service webhook." -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:165 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:167 -#: components/PromptDetail/PromptProjectDetail.jsx:93 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:552 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "Options" -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:98 -#: components/PromptDetail/PromptProjectDetail.jsx:57 -#: components/PromptDetail/PromptProjectDetail.jsx:67 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: components/TemplateList/TemplateListItem.jsx:240 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: 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:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:55 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:135 -#: screens/Project/ProjectList/ProjectListItem.jsx:236 -#: screens/Project/ProjectList/ProjectListItem.jsx:247 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: 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:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "Organisation" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "Organisation (Nom)" -#: screens/Team/TeamList/TeamList.jsx:133 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "Nom de l'organisation" -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "Organisation non trouvée." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: 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 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 -#: util/getRelatedResourceDeleteDetails.js:238 -#: util/getRelatedResourceDeleteDetails.js:272 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 +#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "Organisations" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "Autres invites" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "Non-conformité" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "Sortie" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "Remplacer" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -msgid "Overwrite Variables" -msgstr "Remplacer les variables" +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 +msgid "Overwrite local groups and hosts from remote inventory source" +msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 +msgid "Overwrite local variables from remote inventory source" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "Remplacer les variables" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "PUBLICATION" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "PLACER" -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "Pagerduty" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:206 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "Sous-domaine Pagerduty" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "Sous-domaine Pagerduty" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "Pagination" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "Pan En bas" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "Pan Gauche" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "Pan droite" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "Pan En haut" -#: components/AdHocCommands/AdHocDetailsStep.jsx:266 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "Passez des changements supplémentaires en ligne de commande. Il y a deux paramètres de ligne de commande possibles :" -#: screens/Template/shared/JobTemplateForm.jsx:414 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5582,176 +5693,172 @@ msgid "" "documentation for example syntax." msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation pour obtenir des exemples de syntaxe." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation Ansible Tower pour obtenir des exemples de syntaxe." -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: 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:76 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "Mot de passe" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "Après 24 heures" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "Le mois dernier" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "Les deux dernières semaines" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "La semaine dernière" -#: components/JobList/JobList.jsx:197 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "En attente" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "En attente d'approbation des flux de travail" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "En attente de suppression" -#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "Effectuez une recherche ci-dessus pour définir un filtre d'hôte" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -msgid "Personal access token" -msgstr "Jeton d'accès personnel" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "Lancer" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "Compte de jeux" -#: screens/Job/JobOutput/JobOutput.jsx:696 +#: screens/Job/JobOutput/JobOutput.js:768 msgid "Play Started" msgstr "Scène démarrée" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: screens/Job/JobDetail/JobDetail.jsx:220 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:355 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "Playbook" -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "Vérification du Playbook" -#: screens/Job/JobOutput/JobOutput.jsx:697 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "Playbook terminé" -#: components/PromptDetail/PromptProjectDetail.jsx:103 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:179 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:85 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "Répertoire de playbook" -#: components/JobList/JobList.jsx:182 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "Exécution du playbook" -#: screens/Job/JobOutput/JobOutput.jsx:688 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "Playbook démarré" -#: components/TemplateList/TemplateList.jsx:204 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "Nom du playbook" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "Exécution du playbook" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "Lancements" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "Veuillez ajouter des questions d'enquête." -#: components/PaginatedDataList/PaginatedDataList.jsx:87 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Veuillez ajouter {pluralizedItemName} pour remplir cette liste" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "Veuillez cliquer sur le bouton de démarrage pour commencer." -#: util/validators.jsx:116 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "Veuillez entrer une URL valide" -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "Entrez une valeur." -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "Veuillez vous connecter" -#: components/Schedule/shared/ScheduleForm.jsx:575 +#: components/Schedule/shared/ScheduleForm.js:568 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 +#: screens/Template/shared/JobTemplateForm.js:173 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 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "Veuillez choisir une date/heure de fin qui vient après la date/heure de début." -#: components/Lookup/HostFilterLookup.jsx:297 +#: components/Lookup/HostFilterLookup.js:328 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:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "Remplacement des spécifications du pod" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "Instances de stratégies minimum" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:38 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "Pourcentage d'instances de stratégie" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "Remplir le champ à partir d'un système de gestion des secrets externes" -#: components/Lookup/HostFilterLookup.jsx:287 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" @@ -5760,130 +5867,141 @@ msgid "" "examples." msgstr "Remplissez les hôtes pour cet inventaire en utilisant un filtre de recherche. Exemple : ansible_facts.ansible_distribution : \"RedHat\". Reportez-vous à la documentation pour plus de syntaxe et d'exemples." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:98 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "Port" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Conditions préalables à l'exécution de ce nœud lorsqu'il y a plusieurs parents. Reportez-vous à " -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -msgid "Press 'Enter' to add more answer choices. One answer choice per line." -msgstr "Appuyez sur \"Entrée\" pour ajouter d'autres choix de réponses. Un choix de réponse par ligne." +#: screens/Template/Survey/MultipleChoiceField.js:64 +msgid "" +"Press 'Enter' to add more answer choices. One answer\n" +"choice per line." +msgstr "" -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "Appuyez sur Entrée pour modifier. Appuyez sur ESC pour arrêter la modification." -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "Prévisualisation" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "Phrase de passe pour la clé privée" -#: screens/Template/shared/JobTemplateForm.jsx:558 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "Élévation des privilèges" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "Mot de passe pour l’élévation des privilèges" -#: components/JobList/JobListItem.jsx:196 -#: 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 -#: components/TemplateList/TemplateListItem.jsx:268 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:213 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "Projet" -#: components/PromptDetail/PromptProjectDetail.jsx:100 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:176 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:63 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "Chemin de base du projet" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "Sync Projet" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "Erreur de synchronisation du projet" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "Mise à jour du projet" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "Projet non trouvé." -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "Erreurs de synchronisation du projet" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: 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 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 -#: util/getRelatedResourceDeleteDetails.js:201 -#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:194 +#: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "Projets" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "Promouvoir les groupes de dépendants et les hôtes" -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:628 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "Invite" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "Invite Remplacements" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "Me le demander au lancement" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "Invitation | {0}" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "Valeurs incitatrices" -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -5891,7 +6009,7 @@ msgid "" "documentation for more information and examples on patterns." msgstr "Entrez un modèle d’hôte pour limiter davantage la liste des hôtes qui seront gérés ou attribués par le playbook. Plusieurs modèles sont autorisés. Voir la documentation Ansible pour plus d'informations et pour obtenir des exemples de modèles." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -5899,17 +6017,17 @@ msgid "" "information and examples on patterns." msgstr "Entrez un modèle d’hôte pour limiter davantage la liste des hôtes qui seront gérés ou attribués par le playbook. Plusieurs modèles sont autorisés. Voir la documentation Ansible pour plus d'informations et pour obtenir des exemples de modèles." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:159 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "Indiquez une valeur pour ce champ ou sélectionnez l'option Me le demander au lancement." -#: components/AdHocCommands/AdHocDetailsStep.jsx:270 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." msgstr "Fournir les paires clé/valeur en utilisant soit YAML soit JSON." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -5917,788 +6035,818 @@ msgid "" "retrieving renewal or expanded subscriptions." msgstr "Fournissez vos informations d’identification client Red Hat ou Red Hat Satellite et choisissez parmi une liste d’abonnements disponibles. Les informations d'identification que vous utilisez seront stockées pour une utilisation ultérieure lors de la récupération des abonnements renouvelés ou étendus." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "Fournissez vos informations d'identification Red Hat ou Red Hat Satellite pour activer Insights pour Ansible Automation Platform." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:629 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "URL de rappel d’exécution " -#: screens/Template/shared/JobTemplateForm.jsx:624 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "Détails de rappel d’exécution" -#: screens/Template/shared/JobTemplateForm.jsx:563 -#: screens/Template/shared/JobTemplateForm.jsx:566 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "Rappels d’exécution " -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "Extraire" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "Question" -#: screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "RADIUS" -#: screens/Setting/SettingList.jsx:76 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "Paramètres RADIUS" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:201 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "Lecture" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "Jobs récents" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "Onglet Liste des Jobs récents" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "Modèles récents" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "Onglet Liste des modèles récents" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:88 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 +msgid "Recent jobs" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "Liste de destinataires" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "Liste de destinataires" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:148 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "Manifeste de souscription à Red Hat" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "Redirection d'URIs." -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "Redirection d'urs." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "Redirection vers le tableau de bord" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "Redirection vers le détail de l'abonnement" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "Reportez-vous à " -#: screens/Template/shared/JobTemplateForm.jsx:434 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." msgstr "Reportez-vous à la documentation Ansible pour plus de détails sur le fichier de configuration." -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "Actualiser Jeton" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "Actualiser l’expiration du jeton" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: screens/Project/ProjectList/ProjectListItem.js:130 +msgid "Refresh for revision" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:132 +msgid "Refresh project revision" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "Régions" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "Information d’identification au registre" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Expression régulière où seuls les noms d'hôtes correspondants seront importés. Le filtre est appliqué comme une étape de post-traitement après l'application de tout filtre de plugin d'inventaire." -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "Groupes liés" -#: components/JobList/JobListItem.jsx:129 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:369 -#: screens/Job/JobDetail/JobDetail.jsx:377 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 +msgid "Related search type" +msgstr "" + +#: components/Search/AdvancedSearch.js:146 +msgid "Related search type typeahead" +msgstr "" + +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "Relancer" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "Relancer le Job" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "Relancer tous les hôtes" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "Relancer les hôtes défaillants" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "Relancer sur" -#: components/JobList/JobListItem.jsx:109 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "Relancer en utilisant les paramètres de l'hôte" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:147 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "Archive à distance" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "Supprimer" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "Supprimer tous les nœuds" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "Supprimer le lien" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "Supprimer le nœud" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "Supprimez toutes les modifications locales avant d’effectuer une mise à jour." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "Supprimer l'accès {0}" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "Retirer le jeton {0}" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "La suppression de ce lien rendra le reste de la branche orphelin et entraînera son exécution dès le lancement." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "Fréquence de répétition" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "Remplacer" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:50 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "Remplacer le champ par la nouvelle valeur" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "Demande d’abonnement" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "Obligatoire" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "Nom de la ressource" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "Ressource supprimée" -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "Ressources" -#: components/TemplateList/TemplateListItem.jsx:133 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "Ressources manquantes dans ce modèle." -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "Rétablir la valeur initiale." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Récupérez l'état activé à partir des variables dict donnée de l'hôte. La variable activée peut être spécifiée en utilisant la notation par points, par exemple : \"foo.bar\"" -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:837 -#: screens/Job/JobOutput/JobOutput.jsx:840 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "Renvoi" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "Retour à la gestion des abonnements." -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "Renvoie les résultats qui ont des valeurs autres que celle-ci ainsi que d'autres filtres." -#: components/Search/AdvancedSearch.jsx:106 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "Retourne des résultats qui satisfont à ce filtre ainsi qu'à d'autres filtres. Il s'agit du type d'ensemble par défaut si rien n'est sélectionné." -#: components/Search/AdvancedSearch.jsx:112 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "Retourne les résultats qui satisfont à ce filtre ou à tout autre filtre." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "Rétablir" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "Tout rétablir" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "Revenir aux valeurs par défaut" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:49 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "Retourner le champ à la valeur précédemment enregistrée" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "Inverser les paramètres" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "Revenir à la valeur usine par défaut." -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:171 -#: screens/Project/ProjectList/ProjectListItem.jsx:156 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "Révision" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "Révision n°" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: 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:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "Rôle" -#: components/ResourceAccessList/ResourceAccessList.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:156 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "Rôles" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "Exécuter" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "Éxecuter Commande" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:123 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "Éxecuter Commande" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "Exécutez tous les" -#: components/Schedule/shared/ScheduleForm.jsx:154 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "Fréquence d'exécution" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "Continuer" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "Type d’exécution" -#: components/JobList/JobList.jsx:199 -#: components/TemplateList/TemplateListItem.jsx:105 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "En cours d'exécution" -#: screens/Job/JobOutput/JobOutput.jsx:689 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "Descripteurs d'exécution" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "Jobs en cours d'exécution" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:170 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "Jobs en cours d'exécution" -#: screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "SAML" -#: screens/Setting/SettingList.jsx:80 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "Paramètres SAML" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "Mise à jour SCM" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "SOCIAL" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "Mot de passe SSH" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "Connexion SSL" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "DÉMARRER" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:93 -#: screens/Project/ProjectList/ProjectListItem.jsx:72 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "ÉTAT :" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "Sam." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "Samedi" -#: components/AddRole/AddResourceRole.jsx:265 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:611 -#: components/Schedule/shared/ScheduleForm.jsx:617 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "Enregistrer" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "Sauvegarde & Sortie" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:232 -msgid "Save and enable log aggregation before testing the log aggregator." -msgstr "Enregistrez et activez l'agrégation de journalisation avant de tester l'agrégateur de journalisation." - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "Enregistrer les changements de liens" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "Enregistrement réussi" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "Détails de programmation" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "Détails de programmation" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "Le planning est actif." -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "Le planning est inactif." -#: components/Schedule/shared/ScheduleForm.jsx:531 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "La programmation manque de règles" -#: components/Schedule/ScheduleList/ScheduleList.jsx:222 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:157 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "Programmations" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:126 -#: screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "Champ d'application" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "Faites défiler d'abord" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "Défilement en dernier" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "Faites défiler la page suivante" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "Faire défiler la page précédente" -#: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "Rechercher" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "La recherche est désactivée pendant que le job est en cours" -#: components/Search/AdvancedSearch.jsx:275 -#: components/Search/Search.jsx:286 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "Bouton de soumission de recherche" -#: components/Search/Search.jsx:275 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "Saisie de texte de recherche" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "Deuxième" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: components/PromptDetail/PromptProjectDetail.jsx:96 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "Secondes" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "Voir les erreurs sur la gauche" -#: components/JobList/JobListItem.jsx:68 -#: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "Sélectionner" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "Modifier le type d’identification" -#: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "Sélectionner les groupes" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "Sélectionner les hôtes" -#: components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "Sélectionnez une entrée" -#: screens/InstanceGroup/Instances/InstanceList.jsx:221 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "Sélectionner les instances" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "Sélectionnez les éléments" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "Sélectionnez les éléments de la liste" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "Sélectionner les étiquettes" -#: components/AddRole/AddResourceRole.jsx:254 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "Sélectionnez les rôles à appliquer" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "Sélectionner des équipes" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "Sélectionnez une clé de compte de service formatée en JSON pour remplir automatiquement les champs suivants." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "Sélectionnez un type de nœud" -#: components/AddRole/AddResourceRole.jsx:190 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "Sélectionnez un type de ressource" -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." msgstr "Sélectionnez une branche pour le flux de travail du job. Cette branche est appliquée à tous les nœuds de modèle de tâche qui exigent une branche." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 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:198 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 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:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "Sélectionnez un type d’identifiant" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "Sélectionnez une instance" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "Sélectionnez un Job à annuler" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "Sélectionnez une métrique" -#: components/AdHocCommands/AdHocDetailsStep.jsx:79 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "Sélectionnez un module" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "Choisir un playbook" -#: screens/Template/shared/JobTemplateForm.jsx:323 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "Sélectionnez un projet avant de modifier l'environnement d'exécution." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "Sélectionnez une ligne à approuver" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "Sélectionnez une ligne à supprimer" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "Sélectionnez une ligne pour refuser" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "Sélectionnez une ligne à dissocier" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "Sélectionnez un abonnement" -#: components/Schedule/shared/ScheduleForm.jsx:84 -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:54 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: components/Schedule/shared/ScheduleForm.jsx:88 -#: components/Schedule/shared/ScheduleForm.jsx:92 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: 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:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 -#: screens/User/shared/UserForm.jsx:119 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "Sélectionnez une valeur pour ce champ" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "Sélectionnez un service webhook." -#: components/DataListToolbar/DataListToolbar.jsx:73 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "Tout sélectionner" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "Sélectionnez un type d'activité" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 msgid "Select an instance and a metric to show chart" msgstr "Sélectionnez une instance et une métrique pour afficher le graphique" -#: 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/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." +msgstr "" -#: screens/Project/shared/ProjectForm.jsx:204 +#: components/LaunchPrompt/steps/SurveyStep.js:128 +msgid "Select an option" +msgstr "" + +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "Sélectionnez une organisation avant de modifier l'environnement d'exécution par défaut." -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -6707,327 +6855,333 @@ msgid "" "credential(s) become the defaults that can be updated at run time." msgstr "Sélectionnez les informations d'identification pour que le Job puisse accéder aux nœuds selon qui déterminent l'exécution de cette tâche. Vous pouvez uniquement sélectionner une information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher la case \"Me demander au lancement\" sans la sélection des informations d'identification vous obligera à sélectionner des informations d'identification au moment de l’exécution. Si vous sélectionnez \"Me demander au lancement\", les informations d'identification sélectionnées deviennent les informations d'identification par défaut qui peuvent être mises à jour au moment de l'exécution." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:88 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." msgstr "Faites une sélection à partir de la liste des répertoires trouvés dans le chemin de base du projet. Le chemin de base et le répertoire de playbook fournissent ensemble le chemin complet servant à localiser les playbooks." -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "Sélectionnez les éléments de la liste" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "Sélectionnez le type de Job" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: components/LaunchPrompt/steps/SurveyStep.js:174 +msgid "Select option(s)" +msgstr "" + +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "Sélectionnez une période" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "Sélectionner les rôles à pourvoir" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "Sélectionner le statut" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "Sélectionner des balises" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "Sélectionnez l'environnement d'exécution dans lequel vous voulez que cette commande soit exécutée." -#: screens/Inventory/shared/SmartInventoryForm.jsx:90 +#: screens/Inventory/shared/SmartInventoryForm.js:89 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:514 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation." -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cette organisation." -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "Sélectionnez l'application à laquelle ce jeton appartiendra." -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "Sélectionnez les informations d’identification qu’il vous faut utiliser lors de l’accès à des hôtes distants pour exécuter la commande. Choisissez les informations d’identification contenant le nom d’utilisateur et la clé SSH ou le mot de passe dont Ansible aura besoin pour se connecter aux hôtes distants." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 -msgid "Select the default execution environment for this organization to run on." -msgstr "Sélectionnez l'environnement d'exécution par défaut sur lequel cette organisation doit fonctionner." - -#: screens/Template/shared/JobTemplateForm.jsx:322 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "Sélectionnez l'environnement d'exécution pour ce modèle de Job." -#: components/Lookup/InventoryLookup.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:286 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." -msgstr "Sélectionnez l'inventaire contenant les hôtes\n" +msgstr "" +"Sélectionnez l'inventaire contenant les hôtes\n" "que vous voulez que ce Job gère." -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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 "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:33 -#: components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "Sélectionnez l'inventaire auquel cet hôte appartiendra." -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: screens/Template/shared/JobTemplateForm.js:361 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:301 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "Sélectionnez le projet contenant le playbook que ce job devra exécuter." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "Sélectionnez votre abonnement à la Plateforme d'Automatisation Ansible à utiliser." -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "Sélectionnez {0}" -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:260 -#: components/AddRole/SelectRoleStep.jsx:27 -#: 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:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "Sélectionné" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "Catégorie sélectionnée" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:233 -msgid "Send a test log message to the configured log aggregator." -msgstr "Envoyez un message de journal de test à l'agrégateur de journalisation configuré." - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:93 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "E-mail de l’expéditeur" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "E-mail de l'expéditeur" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "Septembre" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "Fichier JSON Compte de service" -#: screens/Inventory/shared/InventorySourceForm.jsx:53 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "Définir une valeur pour ce champ" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "Définissez le nombre de jours pendant lesquels les données doivent être conservées." -#: screens/Setting/SettingList.jsx:121 +#: screens/Setting/SettingList.js:117 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:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "Définir le chemin source à" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 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:129 +#: screens/Application/shared/ApplicationForm.js: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." -#: components/Search/AdvancedSearch.jsx:98 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "Type d'ensemble" -#: components/Search/AdvancedSearch.jsx:89 +#: components/Search/AdvancedSearch.js:298 +msgid "Set type disabled for related search field fuzzy searches" +msgstr "" + +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "Sélection du type d’ensemble" -#: components/Search/AdvancedSearch.jsx:92 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "En-tête du type d'ensemble" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "Régler le zoom à 100% et centrer le graphique" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "Catégorie de paramètre" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "Le réglage correspond à la valeur d’usine par défaut." -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "Nom du paramètre" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "Paramètres" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "Afficher" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:496 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "Afficher les modifications" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "Afficher tous les groupes" -#: components/AdHocCommands/AdHocDetailsStep.jsx:201 -#: components/AdHocCommands/AdHocDetailsStep.jsx:202 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "Afficher les modifications" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "Afficher la description" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "Afficher moins de détails" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "Afficher uniquement les groupes racines" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "Connectez-vous avec Azure AD" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "Connectez-vous à GitHub" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "Connectez-vous à GitHub Enterprise" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "Connectez-vous avec GitHub Enterprise Organizations" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "Connectez-vous avec GitHub Enterprise Teams" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "Connectez-vous avec GitHub Organizations" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "Connectez-vous avec GitHub Teams" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "Connectez-vous avec Google" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "Connectez-vous avec SAML" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "Se connecter avec SAML {samlIDP}" -#: components/Search/Search.jsx:177 -#: components/Search/Search.jsx:178 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "Sélection par simple pression d'une touche" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:235 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:310 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:536 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "Balises de saut" -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7036,7 +7190,7 @@ msgid "" "of tags." msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’un Job ou d’une Lecture. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -7044,265 +7198,271 @@ msgid "" "documentation for details on the usage of tags." msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’un Job ou d’une Lecture. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "Sauter" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "Slack" -#: screens/Host/HostList/SmartInventoryButton.jsx:19 -#: screens/Host/HostList/SmartInventoryButton.jsx:38 -#: screens/Host/HostList/SmartInventoryButton.jsx:42 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "Inventaire smart" -#: screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "Inventaire smart non trouvé." -#: components/Lookup/HostFilterLookup.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "Filtre d'hôte smart" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "Inventaire smart" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "Certaines des étapes précédentes comportent des erreurs" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Host/HostList/SmartInventoryButton.js:12 +msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "Quelque chose s'est mal passé avec la demande de tester cet identifiant et ses métadonnées." -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "Quelque chose a mal tourné..." -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "Trier" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "Trier l'ordre des questions" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:84 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "Source" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:130 -#: components/PromptDetail/PromptProjectDetail.jsx:79 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:75 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:332 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "Branche Contrôle de la source" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" 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:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "Identifiant Contrôle de la source" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "Type d’Identifiant du Contrôle de la source" -#: components/PromptDetail/PromptProjectDetail.jsx:80 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:151 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "Refspec Contrôle de la source" -#: components/PromptDetail/PromptProjectDetail.jsx:75 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:146 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 +msgid "Source Control Revision" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "Type de Contrôle de la source" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "URL Contrôle de la source" -#: components/JobList/JobList.jsx:180 -#: components/JobList/JobListItem.jsx:33 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "Mise à jour du Contrôle de la source" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "Numéro de téléphone de la source" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:168 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "Variables Source" -#: components/JobList/JobListItem.jsx:170 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "Flux de travail Source" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "Branche Contrôle de la source" -#: screens/Inventory/shared/InventorySourceForm.jsx:160 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "Détails de la source" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "Numéro de téléphone de la source" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:249 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "Variables sources" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "Provenance d'un projet" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "Sources" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." msgstr "Spécifier les En-têtes HTTP en format JSON. Voir la documentation Ansible Tower pour obtenir des exemples de syntaxe." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." msgstr "Spécifier une couleur de notification. Les couleurs acceptées sont d'un code de couleur hex (exemple : #3af or #789abc) ." -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "Spécifier le champ d'application du jeton" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "Préciser les conditions dans lesquelles ce nœud doit être exécuté" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "Erreur standard" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "Standard Out" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "Onglet Erreur standard" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "Onglet Standard Out" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "Démarrer" -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:83 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "Heure Début" -#: components/Schedule/shared/ScheduleForm.jsx:120 -msgid "Start date/time" -msgstr "Date/Heure Début" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "Message de départ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:388 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "Démarrer le corps du message" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "Démarrer le processus de synchronisation" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "Démarrer la source de synchronisation" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "Démarré" -#: components/JobList/JobList.jsx:193 -#: components/JobList/JobList.jsx:214 -#: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "État" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "Valider" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7310,194 +7470,200 @@ msgid "" "the revision specified by the main project.\n" "This is equivalent to specifying the --remote\n" "flag to git submodule update." -msgstr "Les sous-modules suivront le dernier commit sur\n" +msgstr "" +"Les sous-modules suivront le dernier commit sur\n" "leur branche principale (ou toute autre branche spécifiée dans\n" ".gitmodules). Si non, les sous-modules seront maintenus à\n" "la révision spécifiée par le projet principal.\n" "Cela équivaut à spécifier l'option --remote\n" "à git submodule update." -#: screens/Setting/SettingList.jsx:131 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "Abonnement" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "Détails d’abonnement" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "Gestion des abonnements" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "Manifeste de souscription" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "Modalité de sélection de l'abonnement" -#: screens/Setting/SettingList.jsx:136 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "Paramètres d'abonnement" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "Type d’abonnement" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "Table des abonnements" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "Subversion" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "Réussite" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:397 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "Message de réussite" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:406 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "Corps du message de réussite" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "Réussi" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "Tâches ayant réussi" -#: screens/Project/ProjectList/ProjectListItem.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "Copie réussie dans le presse-papiers !" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "Dim." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "Dimanche" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:168 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "Questionnaire" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "Liste des enquêtes" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "Aperçu de l'enquête" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "Basculement d'enquête" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "Aperçu de l'enquête modale" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "Questions de l'enquête" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:111 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "Sync" -#: screens/Project/ProjectList/ProjectListItem.jsx:187 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "Projet Sync" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "Tout sync" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "Synchroniser toutes les sources" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "Erreur de synchronisation" -#: screens/Project/ProjectList/ProjectListItem.jsx:160 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "Synchronisation pour la révision" -#: screens/Setting/SettingList.jsx:101 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Project/ProjectList/ProjectListItem.js:120 +msgid "Syncing" +msgstr "" + +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "Système" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 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:34 +#: screens/User/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "Auditeur système" -#: screens/Job/JobOutput/JobOutput.jsx:702 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "Avertissement système" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "Les administrateurs système ont un accès illimité à toutes les ressources." -#: screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "TACACS+" -#: screens/Setting/SettingList.jsx:84 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "Paramètres de la TACACS" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "Onglets" -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7506,7 +7672,7 @@ msgid "" "the usage of tags." msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez la lecture de certaines parties ou exécuter une tâche pariculière. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation pour obtenir des détails sur l'utilisation des balises." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -7514,198 +7680,196 @@ msgid "" "documentation for details on the usage of tags." msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez faire une lecture particulière ou exécuter une tâche spécifique. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:132 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "Balises pour l'annotation" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "Balises pour l'annotation (facultatif)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:175 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "URL cible" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "Tâche" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "Nombre de tâches" -#: screens/Job/JobOutput/JobOutput.jsx:693 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "Tâche démarrée" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "Tâches" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "Équipe" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "Rôles d’équipe" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "Équipe non trouvée." -#: components/AddRole/AddResourceRole.jsx:208 -#: components/AddRole/AddResourceRole.jsx:209 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: 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: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:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 -#: util/getRelatedResourceDeleteDetails.js:180 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 +#: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "Équipes" -#: screens/Template/Template.jsx:184 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "Mise à jour introuvable" -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -msgid "Template type" -msgstr "Type de modèle" - -#: components/TemplateList/TemplateList.jsx:182 -#: components/TemplateList/TemplateList.jsx:239 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 -#: screens/Template/Templates.jsx:16 -#: util/getRelatedResourceDeleteDetails.js:224 -#: util/getRelatedResourceDeleteDetails.js:281 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 +#: util/getRelatedResourceDeleteDetails.js:217 +#: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "Modèles" -#: 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 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "Test" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "Test des informations d'identification externes" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "Notification test" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -msgid "Test logging" -msgstr "Enregistrement des tests" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "Notification test" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "Test réussi." -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "Texte" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "Zone de texte" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "Zone de texte" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "Cette valeur n’a pas été trouvée. Veuillez entrer ou sélectionner une valeur valide." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr "Le" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "L'environnement d'exécution à utiliser lorsqu'il n'a pas été configuré pour un modèle de travail." -#: screens/Application/shared/ApplicationForm.jsx:87 +#: screens/Application/shared/ApplicationForm.js: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." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." msgstr "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:490 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" "timeout." msgstr "Délai (en secondes) avant l'annulation de la tâche. La valeur par défaut est 0 pour aucun délai d'expiration du job." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." msgstr "URL de base du serveur Grafana - le point de terminaison /api/annotations sera ajouté automatiquement à l'URL Grafana de base." -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "L'environnement d'exécution qui sera utilisé pour les tâches au sein de cette organisation. Il sera utilisé comme solution de rechange lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du projet, du modèle de job ou du flux de travail." -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "L'environnement d'exécution qui sera utilisé pour les jobs qui utilisent ce projet. Il sera utilisé comme solution de rechange lorsqu'un environnement d'exécution n'a pas été explicitement attribué au niveau du modèle de job ou du flux de travail." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 +msgid "" +"The execution environment that will be used when launching\n" +"this job template. The resolved execution environment can be overridden by\n" +"explicitly assigning a different one to this job template." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." msgstr "Le premier extrait toutes les références. Le second extrait la requête Github pull numéro 62, dans cet exemple la branche doit être `pull/62/head`." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 msgid "The full image location, including the container registry, image name, and version tag." msgstr "L'emplacement complet de l'image, y compris le registre du conteneur, le nom de l'image et la balise de version." -#: screens/Organization/shared/OrganizationForm.jsx:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "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:428 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -7714,300 +7878,308 @@ msgid "" "with a change to" msgstr "Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1 utilisera la valeur par défaut Ansible qui est généralement 5. Le nombre de fourches par défaut peut être remplacé par un changement vers" -#: components/AdHocCommands/AdHocDetailsStep.jsx:188 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "Nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. La saisie d'aucune valeur entraînera l'utilisation de la valeur par défaut du fichier de configuration ansible. Vous pourrez trouver plus d’informations." -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "La page que vous avez demandée n'a pas été trouvée." -#: components/AdHocCommands/AdHocDetailsStep.jsx:168 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "Le modèle utilisé pour cibler les hôtes dans l'inventaire. En laissant le champ vide, tous et * cibleront tous les hôtes de l'inventaire. Vous pouvez trouver plus d'informations sur les modèles d'hôtes d'Ansible" -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/Project/ProjectList/ProjectListItem.js:118 +msgid "The project is currently syncing and the revision will be available after the sync is complete." +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 +msgid "The project must be synced before a revision is available." +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:128 +msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "La ressource associée à ce nœud a été supprimée." -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." msgstr "Le format suggéré pour les noms de variables est en minuscules avec des tirets de séparation (exemple, foo_bar, user_id, host_name, etc.). Les noms de variables contenant des espaces ne sont pas autorisés." -#: 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é." - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" "assigned to other projects. Create a new directory there and make\n" "sure the playbook files can be read by the \"awx\" system user,\n" -"or have {brandName} directly retrieve your playbooks from\n" +"or have {0} directly retrieve your playbooks from\n" "source control using the Source Control Type option above." -msgstr "Il n'y a pas d'annuaires de playbooks disponibles dans {project_base_dir}. Soit ce répertoire est vide, soit tout le contenu est déjà affecté à d'autres projets. Créez-y un nouveau répertoire et assurez-vous que les fichiers du playbook peuvent être lus par l'utilisateur du système \"awx\", ou bien il faut que {brandName} récupére directement vos playbooks à partir du contrôle des sources en utilisant l'option Type de contrôle des sources ci-dessus." +msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:31 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "Il doit y avoir une valeur dans une entrée au moins" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "Il y a eu un problème de connexion. Veuillez réessayer." -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "Il y a eu une erreur lors du chargement de ce contenu. Veuillez recharger la page." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "Il y a eu une erreur dans l'analyse du fichier. Veuillez vérifier le formatage du fichier et réessayer." -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "Une erreur s'est produite lors de la sauvegarde du flux de travail." -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -msgid "There was an error testing the log aggregator." -msgstr "Une erreur s’est produite lors du test de l'agrégateur de journalisation." +#: components/AdHocCommands/AdHocDetailsStep.js:68 +msgid "These are the modules that {0} supports running commands against." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -msgid "These are the modules that {brandName} supports running commands against." -msgstr "Il s'agit des modules que {brandName} prend en charge pour l'exécution de commandes." - -#: components/AdHocCommands/AdHocDetailsStep.jsx:146 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "Il s'agit des niveaux de verbosité pour les standards hors du cycle de commande qui sont pris en charge." -#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "Ces arguments sont utilisés avec le module spécifié." -#: components/AdHocCommands/AdHocDetailsStep.jsx:118 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "Ces arguments sont utilisés avec le module spécifié. Vous pouvez trouver des informations sur {0} en cliquant sur" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "Troisième" -#: screens/Template/shared/JobTemplateForm.jsx:153 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "Ce projet doit être mis à jour" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "Cette action supprimera les éléments suivants :" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 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:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "Cette action va dissocier le rôle suivant de {0} :" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "Cette action dissociera les éléments suivants :" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "Ce groupe de conteneurs est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:282 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "Cette accréditation est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "Ce type d’accréditation est actuellement utilisé par certaines informations d’accréditation et ne peut être supprimé" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." -msgstr "Ces données sont utilisées pour améliorer\n" +msgstr "" +"Ces données sont utilisées pour améliorer\n" "les futures versions du logiciel et pour fournir\n" "des informations sur la plate-forme d'automatisation Ansible." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" "streamline customer experience and success." -msgstr "Ces données sont utilisées pour améliorer\n" +msgstr "" +"Ces données sont utilisées pour améliorer\n" "les futures versions du logiciel Tower et contribuer à\n" "à rationaliser l'expérience des clients." -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "Cet environnement d'exécution est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "Ce champ est ignoré à moins qu'une variable activée ne soit définie. Si la variable activée correspond à cette valeur, l'hôte sera activé lors de l'importation." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "Ce champ ne doit pas être vide" -#: util/validators.jsx:100 +#: util/validators.js:121 msgid "This field must be a number" msgstr "Ce champ doit être un numéro" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 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 {0} et {1}" -#: util/validators.jsx:40 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "Ce champ doit être un nombre et avoir une valeur comprise entre {min} et {max}" -#: util/validators.jsx:140 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "Ce champ doit être une expression régulière" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: util/validators.jsx:84 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "Ce champ doit être un nombre entier" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "Ce champ doit comporter au moins {0} caractères" -#: util/validators.jsx:31 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "Ce champ doit comporter au moins {min} caractères" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "Ce champ doit être supérieur à 0" -#: 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 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "Ce champ ne doit pas être vide" -#: util/validators.jsx:74 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "Ce champ ne doit pas contenir d'espaces" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "Ce champ ne doit pas dépasser {0} caractères" -#: util/validators.jsx:22 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "Ce champ ne doit pas dépasser {max} caractères" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant l’identifiant spécifié." -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "Ce groupe d'instance est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -msgstr "Cet inventaire est appliqué à tous les nœuds de modèle de job de ce flux de travail ({0}) qui demandent un inventaire." +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "Cet inventaire est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ?" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "C'est la seule fois où le secret du client sera révélé." -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 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:395 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "Ce modèle de poste est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:166 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "Cette organisation est actuellement en cours de traitement par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ?" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:225 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "Ce projet est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "Ce projet est actuellement en cours de synchronisation et ne peut être cliqué tant que le processus de synchronisation n'est pas terminé" -#: components/Schedule/ScheduleList/ScheduleList.jsx:122 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "Il manque un inventaire dans ce calendrier" -#: components/Schedule/ScheduleList/ScheduleList.jsx:147 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "Ce tableau ne contient pas les valeurs d'enquête requises" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:64 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "Cette étape contient des erreurs" -#: screens/User/shared/UserForm.jsx:146 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "Cette valeur ne correspond pas au mot de passe que vous avez entré précédemment. Veuillez confirmer ce mot de passe." -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" -msgstr "Ceci rétablira toutes les valeurs de configuration sur cette page à\n" +msgstr "" +"Ceci rétablira toutes les valeurs de configuration sur cette page à\n" "à leurs valeurs par défaut. Êtes-vous sûr de vouloir continuer ?" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "Ce flux de travail ne comporte aucun nœud configuré." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "Ce modèle de tâche de flux de travail est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ?" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "Jeu." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "Jeudi" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "Durée" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8017,7 +8189,7 @@ msgid "" "performed." msgstr "Délai en secondes à prévoir pour qu’un projet soit actualisé. Durant l’exécution des tâches et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle mise à jour du projet sera effectuée." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -8026,950 +8198,965 @@ msgid "" "inventory sync will be performed." msgstr "Délai en secondes à prévoir pour qu'une synchronisation d'inventaire soit actualisée. Durant l’exécution du Job et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle synchronisation de l'inventaire sera effectuée." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "Expiré" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:103 -#: 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:489 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "Délai d'attente" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "Délai d'attente (minutes)" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "Délai d’attente (secondes)" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "Basculer la légende" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "Changer de mot de passe" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "Basculer les outils" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "Basculer entre Étendre/Effondrer pour les lignes d'événements" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "Basculer l'hôte" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "Basculer l'instance" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "Basculer la légende" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "Basculer les approbations de notification" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "Échec de la notification de basculement" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "Début de la notification de basculement" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "Succès de la notification de basculement" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "Supprimer la programmation" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "Basculer les outils" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "Jeton" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "Informations sur le jeton" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "Jeton non trouvé." -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -msgid "Token type" -msgstr "Type de jeton" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:106 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "Jetons" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "Outils" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "Top Pagination" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "Total Jobs" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "Total Nœuds" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:174 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "Total Jobs" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "Suivi des sous-modules" -#: components/PromptDetail/PromptProjectDetail.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:75 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "Suivre le dernier commit des sous-modules sur la branche" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "Essai" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "Vrai" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "Mar." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "Mardi" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:215 -#: components/JobList/JobListItem.jsx:82 -#: 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:162 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:196 -#: components/TemplateList/TemplateList.jsx:221 -#: components/TemplateList/TemplateListItem.jsx:152 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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: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:241 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: 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: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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "Type" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "Détails sur le type" -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -msgid "Type answer then click checkbox on right to select answer as default." -msgstr "Saisir la réponse puis cliquez sur la case à cocher à droite pour sélectionner la réponse par défaut." +#: screens/Template/Survey/MultipleChoiceField.js:61 +msgid "" +"Type answer then click checkbox on right to select answer as\n" +"default." +msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:111 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "" + +#: components/HostForm/HostForm.js:62 +msgid "Unable to change inventory on a host" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "Non disponible" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "Annuler" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Unfollow" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "Illimité" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "Hôte inaccessible" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "Nombre d'hôtes inaccessibles" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "Hôtes inaccessibles" -#: util/dates.jsx:89 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "Chaîne du jour non reconnue" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "Annuler les modifications non enregistrées" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "Mettre à jour Révision au lancement" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -msgid "Update on Launch" -msgstr "Mettre à jour au lancement" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -msgid "Update on Project Update" -msgstr "Mettre à jour lorsque le projet est actualisé" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:160 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "Mettre à jour au lancement" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:170 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "Mettre à jour lorsque le projet est actualisé" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "Mettre à jour les options" -#: screens/Setting/SettingList.jsx:91 -msgid "Update settings pertaining to Jobs within {brandName}" -msgstr "Mettre à jour les paramètres relatifs aux Job dans {brandName}" +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 +msgid "Update revision on job launch" +msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Setting/SettingList.js:87 +msgid "Update settings pertaining to Jobs within {0}" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "Mettre à jour la clé de webhook" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "Mise à jour en cours" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr "Télécharger un fichier .zip" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "Téléchargez un manifeste d'abonnement Red Hat contenant votre abonnement. Pour générer votre manifeste d'abonnement, accédez à <0>allocations d'abonnements sur le portail client de Red Hat." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -msgid "Use Fact Storage" -msgstr "Utiliser le stockage des faits" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "Utiliser SSL" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "Utiliser TLS" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" msgstr "Utilisez des messages personnalisés pour modifier le contenu des notifications envoyées lorsqu'un job démarre, réussit ou échoue. Utilisez des parenthèses en accolade pour accéder aux informations sur le job :" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:107 +#: screens/InstanceGroup/Instances/InstanceList.js:215 +msgid "Used Capacity" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "Capacité utilisée" -#: components/AppContainer/PageHeaderToolbar.jsx:130 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "Utilisateur" -#: components/AppContainer/PageHeaderToolbar.jsx:158 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "Détails de l'erreur" -#: screens/Setting/SettingList.jsx:120 -#: screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "Interface utilisateur" -#: screens/Setting/SettingList.jsx:125 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "Paramètres de l'interface utilisateur" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "Rôles des utilisateurs" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:129 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "Type d’utilisateur" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "Analyse des utilisateurs" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "Analyse des utilisateurs et des résultats" -#: components/AppContainer/PageHeaderToolbar.jsx:151 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "Informations sur l'utilisateur" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "Utilisateur non trouvé." -#: screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "Jetons d'utilisateur" -#: components/AddRole/AddResourceRole.jsx:124 -#: components/AddRole/AddResourceRole.jsx:139 -#: components/ResourceAccessList/ResourceAccessList.jsx:127 -#: components/ResourceAccessList/ResourceAccessList.jsx:180 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:78 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:180 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:230 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 -#: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:122 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:63 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "Nom d'utilisateur" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "Nom d'utilisateur / mot de passe" -#: components/AddRole/AddResourceRole.jsx:198 -#: components/AddRole/AddResourceRole.jsx:199 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:117 -#: screens/User/UserList/UserList.jsx:157 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "Utilisateurs" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:99 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:221 -#: screens/Template/shared/JobTemplateForm.jsx:412 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "Variables" -#: screens/Job/JobOutput/JobOutput.jsx:694 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "Variables demandées" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "Mot de passe Vault" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "Mot de passe Vault | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:699 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "Verbeux" -#: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:100 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:462 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "Verbosité" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "Version" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -msgid "View Activity Stream settings" -msgstr "Afficher le paramètres des flux d’activité" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "Voir les paramètres Azure AD" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "Afficher les détails des informations d'identification" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "Voir les détails" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "Voir les paramètres de GitHub" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "Voir les paramètres de Google OAuth 2.0" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "Voir les détails de l'hôte" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:169 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "Voir les détails de l'inventaire" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "Voir les groupes d'inventaire" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "Voir les détails de l'hôte de l'inventaire" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "Voir des exemples JSON dans <0>www.json.org" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "Voir les détails de Job" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "Voir les paramètres des Jobs" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "Voir les paramètres LDAP" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "Voir les paramètres d'enregistrement" -#: screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 +msgid "View Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "Voir les paramètres divers du système" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "Voir les détails de l'organisation" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "Voir les détails du projet" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "Voir les paramètres de RADIUS" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "Voir les paramètres SAML" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "Afficher les programmations" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "Afficher les paramètres" -#: screens/Template/Template.jsx:168 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "Afficher le questionnaire" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "Voir les paramètres TACACS+" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "Voir les détails de l'équipe" -#: screens/Template/Template.jsx:265 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "Voir les détails du modèle" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "Voir les jetons" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "Voir les détails de l'utilisateur" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "Voir les paramètres de l'interface utilisateur" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "Voir les détails de l'approbation du flux de travail" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "Voir les exemples YAML à <0>docs.ansible.com" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "Afficher le flux d’activité" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "Voir toutes les informations d’identification." -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "Voir tous les hôtes." -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:97 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "Voir tous les inventaires." -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "Voir tous les hôtes de l'inventaire." -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "Voir tous les Jobs" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "Voir tous les Jobs." -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "Voir tous les modèles de notification." -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "Voir toutes les organisations." -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "Voir tous les projets." -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "Voir toutes les équipes." -#: screens/Template/Template.jsx:185 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "Voir tous les modèles." -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "Voir tous les utilisateurs." -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "Voir toutes les approbations de flux de travail." -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "Voir toutes les applications." -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "Voir tous les types d'informations d'identification" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "Voir tous les environnements d'exécution" -#: screens/InstanceGroup/ContainerGroup.jsx:83 -#: screens/InstanceGroup/InstanceGroup.jsx:89 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "Voir tous les groupes d'instance" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "Voir tous les jobs de gestion" -#: screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "Voir tous les paramètres" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "Voir tous les jetons." -#: screens/Setting/SettingList.jsx:132 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "Afficher et modifier les informations relatives à votre abonnement" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "Afficher les détails de l’événement" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "Voir les détails de la source de l'inventaire" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "Voir job {0}" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "Voir les détails de nœuds" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 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:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "Affichages" -#: components/TemplateList/TemplateListItem.jsx:157 -#: components/TemplateList/TemplateListItem.jsx:163 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "Visualiseur" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "AVERTISSEMENT :" -#: components/JobList/JobList.jsx:198 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "En attente" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:701 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "Avertissement" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "Avertissement : modifications non enregistrées" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "Nous n'avons pas pu localiser les licences associées à ce compte." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "Nous n'avons pas pu localiser les abonnements associés à ce compte." -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:249 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "Informations d'identification du webhook" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "Informations d'identification du webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "Clé du webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "Service webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "URL du webhook" -#: screens/Template/shared/JobTemplateForm.jsx:655 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "Détails de webhook" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Les services webhook peuvent lancer des tâches avec ce modèle de tâche en effectuant une requête POST à cette URL." -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "Les services webhook peuvent l'utiliser en tant que secret partagé." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 +msgid "Webhooks" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "Mer." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "Mercredi" -#: components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "Semaine" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "Jour de la semaine" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "Jour du week-end" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." msgstr "Bienvenue sur la plate-forme Red Hat Ansible Automation ! Veuillez compléter les étapes ci-dessous pour activer votre abonnement." -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "Beinvenue à {brandName} !" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:150 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" "external source." msgstr "Si non coché, une fusion aura lieu, combinant les variables locales à celles qui se trouvent dans la source externe." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." msgstr "Si non coché, les hôtes et groupes locaux dépendants non trouvés dans la source externe ne seront pas touchés par le processus de mise à jour de l'inventaire." -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "Flux de travail" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "Approbation du flux de travail" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "Approbation du flux de travail non trouvée." -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "Approbations des flux de travail" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "Job de flux de travail" -#: components/JobList/JobListItem.jsx:158 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 -#: util/getRelatedResourceDeleteDetails.js:111 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 +#: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "Modèle de Job de flux de travail" -#: util/getRelatedResourceDeleteDetails.js:121 -#: util/getRelatedResourceDeleteDetails.js:163 -#: util/getRelatedResourceDeleteDetails.js:266 +#: util/getRelatedResourceDeleteDetails.js:114 +#: util/getRelatedResourceDeleteDetails.js:156 +#: util/getRelatedResourceDeleteDetails.js:259 msgid "Workflow Job Template Nodes" msgstr "Nodes de modèles de Jobs de workflows" -#: util/getRelatedResourceDeleteDetails.js:146 +#: util/getRelatedResourceDeleteDetails.js:139 msgid "Workflow Job Templates" msgstr "Modèles de Jobs de flux de travail" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "Lien vers le flux de travail" -#: components/TemplateList/TemplateList.jsx:200 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "Modèle de flux de travail" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:433 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "Message de flux de travail approuvé" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:445 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "Corps de message de flux de travail approuvé" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:457 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "Message de flux de travail refusé" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:469 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "Corps de message de flux de travail refusé" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "Afficher la documentation" @@ -8977,492 +9164,448 @@ msgstr "Afficher la documentation" msgid "Workflow job templates" msgstr "Modèles de Jobs de flux de travail" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "Modal de liaison de flux de travail" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "Vue modale du nœud de flux de travail" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:481 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "Message de flux de travail en attente" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:493 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "Corps du message d'exécution de flux de travail" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:505 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "Message d'expiration de flux de travail" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "Corps du message d’expiration de flux de travail" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "Écriture" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "YAML :" -#: components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "Année" -#: components/Search/Search.jsx:256 +#: components/Search/Search.js:259 msgid "Yes" msgstr "Oui" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "Vous ne pouvez pas agir sur les approbations de flux de travail suivantes : {itemsUnableToApprove}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "Vous ne pouvez pas agir sur les approbations de flux de travail suivantes : {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:156 +#: components/Lookup/MultiCredentialsLookup.js: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:97 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "Vous n'avez pas la permission de supprimer les groupes suivants : {itemsUnableToDelete}" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "Vous n'avez pas la permission de supprimer {pluralizedItemName} : {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 -msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -msgstr "Vous n'avez pas la permission de supprimer {pluralizedItemName} : {itemsUnableToDelete}." - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "Vous n'avez pas la permission de dissocier les éléments suivants : {itemsUnableToDisassociate}" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" msgstr "Vous pouvez appliquer un certain nombre de variables possibles dans le message. Pour plus d'informations, reportez-vous au" -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "Votre session a expiré. Veuillez vous connecter pour continuer là où vous vous êtes arrêté." -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "Votre session est sur le point d'expirer" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "Zoom avant" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "Zoom arrière" -#: screens/Template/shared/JobTemplateForm.jsx:753 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js: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:750 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js: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." -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 +#: screens/Template/Survey/SurveyListItem.js:157 msgid "actions" msgstr "actions" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "et cliquez sur Mise à jour de la révision au lancement" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "approuvé" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "logo de la marque" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "annuler supprimer" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -msgid "capacity adjustment" -msgstr "ajustement des capacités" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:240 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "commande" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "confirmer supprimer" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "confirmer dissocier" -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -msgid "copy to clipboard disabled" -msgstr "copie dans le presse-papiers désactivée" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "erreur de suppression" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "refusé" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "dissocier" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "documentation" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: 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/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "Modifier" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "crypté" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -msgid "expiration" -msgstr "expiration" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "pour plus d'infos." -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "pour plus d'informations." -#: components/AdHocCommands/AdHocDetailsStep.jsx:174 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "ici" -#: components/AdHocCommands/AdHocDetailsStep.jsx:125 -#: components/AdHocCommands/AdHocDetailsStep.jsx:194 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "ici." -#: components/Lookup/HostFilterLookup.jsx:337 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "hôtes" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -msgid "instance counts" -msgstr "compte des instances" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -msgid "instance group used capacity" -msgstr "la capacité utilisée par le groupe d'instances" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -msgid "instance host name" -msgstr "nom d'hôte de l'instance" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -msgid "instance type" -msgstr "type d'instance" - -#: components/Lookup/HostListItem.jsx:30 -msgid "inventory" -msgstr "inventaire" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "éléments" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "utilisateur ldap" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "type de connexion" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "min" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "se déplacer vers le bas" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "monter" -#: components/Lookup/HostListItem.jsx:23 -msgid "name" -msgstr "nom" - -#: screens/Template/Survey/MultipleChoiceField.jsx:73 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "nouveau choix" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "de" -#: components/AdHocCommands/AdHocDetailsStep.jsx:238 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "l'option à la" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "page" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "pages" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "par page" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "relancer les Jobs" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -msgid "scope" -msgstr "champ d'application" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "sec" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "secondes" -#: components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "sélectionner un module" -#: components/AdHocCommands/AdHocDetailsStep.jsx:135 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "choisir la verbosité" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "social login" -#: screens/Template/shared/JobTemplateForm.jsx:344 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "branche du contrôle de la source" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "système" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -msgid "team name" -msgstr "nom de l'équipe" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "expiré" -#: components/AdHocCommands/AdHocDetailsStep.jsx:218 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "changements d'affectation" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -msgid "token name" -msgstr "nom du jeton" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "actualisé" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "clé webhook de modèles de tâche flux de travail" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "{0, plural, one {Est-ce que vous êtes sûr de vouloir supprimer le groupe ci-dessous?} other {Est-ce que vous êtes sûr de vouloir supprimer les groupes ci-dessous?}}" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "{0, plural, one {Suppression de groupe?} other {Suppression de groupe?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 +msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.js:236 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 {L'inventaire sera en attente jusqu'à ce que la suppression finale soit traitée.} other {L'inventaire sera en attente jusqu'à ce que la suppression finale soit traitée.}}" -#: components/JobList/JobList.jsx:242 +#: components/JobList/JobList.js:254 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 {Le job sélectionné ne peut pas être supprimé en raison d'une autorisation insuffisante ou d'un statut de job en cours} other {Les jobs sélectionnés ne peuvent pas être supprimés en raison d'autorisations insuffisantes ou d'un statut de job en cours}}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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 {Cette autorisation peut être supprimée en raison d'autorisations insuffisantes ou d'un job en cours} other {Ces autorisations ne peuvent être supprimées en raison d'autorisations insuffisantes ou d'un travail en cours}}" -#: screens/Credential/CredentialList/CredentialList.jsx:181 +#: screens/Credential/CredentialList/CredentialList.js:178 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 {Cette information d'identification est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ? } other {La suppression de ces informations d'identification pourrait avoir un impact sur les autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ? }}" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:170 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 {Ce type de justificatif est actuellement utilisé par certains justificatifs et ne peut être supprimé.} other {Les types de justificatifs qui sont utilisés par des justificatifs ne peuvent être supprimés. Etes-vous sûr de vouloir supprimer quand même ? }}" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:187 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 {Cet environnement d'exécution est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ? } other {Ces environnements d'exécution pourraient être utilisés par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer de toute façon ? }}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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 {Ce groupe d'instance est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ? } other {La suppression de ces groupes d'instances pourrait avoir un impact sur d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ? }}" -#: screens/Inventory/InventoryList/InventoryList.jsx:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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 {Cet inventaire est actuellement utilisé par certains modèles. Êtes-vous sûr de vouloir le supprimer ? } other {La suppression de ces inventaires pourrait avoir un impact sur certains modèles qui en dépendent. Êtes-vous sûr de vouloir les supprimer de toute façon ? }}" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.js:186 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 {Cette source d'inventaire est actuellement utilisée par d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir la supprimer ? } other {La suppression de ces sources d'inventaire pourrait avoir un impact sur d'autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même}}" -#: screens/Organization/OrganizationList/OrganizationList.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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 {Cette organisation est actuellement utilisée par d'autres ressources. Êtes-vous sûr de vouloir la supprimer ? } other {La suppression de ces organisations pourrait avoir un impact sur les autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ? }}" -#: screens/Project/ProjectList/ProjectList.jsx:198 +#: screens/Project/ProjectList/ProjectList.js:241 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 {Ce projet est actuellement utilisé par d'autres ressources. Êtes-vous sûr de vouloir le supprimer ? } other {La suppression de ces projets pourrait avoir un impact sur les autres ressources qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ? }}" -#: components/TemplateList/TemplateList.jsx:242 +#: components/TemplateList/TemplateList.js:251 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 {Ce modèle est actuellement utilisé par certains noeuds de flux de travail. Êtes-vous sûr de vouloir le supprimer ? } other {La suppression de ces modèles pourrait avoir un impact sur certains nœuds de flux de travail qui en dépendent. Êtes-vous sûr de vouloir les supprimer quand même ? }}" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {Vous ne pouvez pas annuler le job suivant car il n'est pas en cours d'exécution:} other {Vous ne pouvez pas annuler les jobs suivants car ils ne sont pas en cours d'exécution:}}" -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "{0, plural, one {Vous n'avez pas la permission d'annuler le job suivant:} other {Vous n'avez pas la permission d'annuler les jobs suivants:}}" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -msgid "{0}" -msgstr "{0}" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "{0} (supprimé)" -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "{0} plus" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "{0} sources avec des échecs de synchronisation." -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -msgid "{0}: {1}" -msgstr "{0} : {1}" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "{brandName} logo" -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "{dateStr} par <0>{username}" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:187 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "{forks, plural, one {# fourche} other {# forks}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{internalValue, plural, one {jour} other {jours}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{internalValue, plural, one {heure} other {heures}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{internalValue, plural, one {minute} other {minutes}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{internalValue, plural, one {mois} other {mois}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{internalValue, plural, one {semaine} other {semaine}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{internalValue, plural, one {année} other {années}}" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/Schedule/shared/DateTimePicker.js:49 +msgid "{label} date" +msgstr "" + +#: components/Schedule/shared/DateTimePicker.js:57 +msgid "{label} time" +msgstr "" + +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "{minutes} min {secondes} sec" -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "{numJobsToCancel, plural, one {job à annuler} other {jobs à annuler}}" -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {Cette action annulera le job suivant:} other {Cette action annulera les jobs suivants:}}" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/DetailList/NumberSinceDetail.js:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr "{sessionCountdown, plural, one {Vous serez déconnecté dans # seconde pour cause d'inactivité} other {Vous serez déconnecté dans # secondes pour cause d'inactivité}}" diff --git a/awx/ui_next/src/locales/ja/messages.po b/awx/ui_next/src/locales/ja/messages.po index 434f520f6b..607b13ec69 100644 --- a/awx/ui_next/src/locales/ja/messages.po +++ b/awx/ui_next/src/locales/ja/messages.po @@ -2,370 +2,372 @@ msgid "" msgstr "" "POT-Creation-Date: 2021-06-08 18:28+0000\n" "Mime-Version: 1.0\n" -"Language: ja \n" +"Language: ja\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "(最初の 10 件に制限)" -#: components/TemplateList/TemplateListItem.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "(起動プロンプト)" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "*このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -msgid "- Enable Concurrent Jobs" -msgstr "- 同時実行ジョブの有効化" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -msgid "- Enable Webhooks" -msgstr "- Webhook の有効化" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "/ (プロジェクト root)" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:211 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "0 (正常)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:102 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "0 (警告)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:103 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "1 (情報)" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:212 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "1 (詳細)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:104 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "2 (デバッグ)" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:213 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "2 (より詳細)" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "3 (デバッグ)" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "4 (接続デバッグ)" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "5 (WinRM デバッグ)" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" "the branch field not otherwise available." msgstr "取得する refspec (Ansible git モジュールに渡します)。このパラメーターを使用すると、(パラメーターなしでは利用できない) ブランチのフィールド経由で参照にアクセスできるようになります。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "サブスクリプションマニフェストは、Red Hat サブスクリプションのエクスポートです。サブスクリプションマニフェストを生成するには、<0>access.redhat.com にアクセスします。
詳細は、『<1>ユーザーガイド』を参照してください。" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "すべて" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:211 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "API サービス/統合キー" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "API トークン" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "API サービス/統合キー" -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "情報" -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:70 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:145 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "アクセス" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "アクセストークンの有効期限" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:275 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "アカウント SID" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "アカウントトークン" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "アクション" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:164 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:257 -#: screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 -#: screens/Credential/CredentialList/CredentialList.jsx:149 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:165 -#: screens/Host/HostList/HostListItem.jsx:42 -#: 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:148 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: 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:223 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:172 -#: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:151 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:168 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "アクション" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:83 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 -#: components/TemplateList/TemplateListItem.jsx:233 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "アクティビティー" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:44 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "アクティビティーストリーム" -#: screens/Setting/SettingList.jsx:110 -msgid "Activity Stream settings" -msgstr "アクティビティーストリームの設定" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "アクティビティーストリームのタイプセレクター" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "アクター" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "追加" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "リンクの追加" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "ノードの追加" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "質問の追加" -#: components/AddRole/AddResourceRole.jsx:184 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "ロールの追加" -#: components/AddRole/AddResourceRole.jsx:181 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "チームロールの追加" -#: components/AddRole/AddResourceRole.jsx:178 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "ユーザーロールの追加" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "新規ノードの追加" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 msgid "Add a new node between these two nodes" msgstr "これら 2 つのノードの間に新しいノードを追加します" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "コンテナーグループの追加" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "既存グループの追加" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "既存ホストの追加" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "インスタンスグループの追加" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "インベントリーの追加" -#: components/TemplateList/TemplateList.jsx:133 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "新規ジョブテンプレートの追加" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "新規グループの追加" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "新規ホストの追加" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "リソースタイプの追加" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "スマートインベントリーの追加" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "チームパーミッションの追加" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "ユーザー権限の追加" -#: components/TemplateList/TemplateList.jsx:134 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "ワークフローテンプレートの追加" -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "管理" -#: components/DataListToolbar/DataListToolbar.jsx:85 -#: screens/Job/JobOutput/JobOutput.jsx:706 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "詳細" -#: components/Search/AdvancedSearch.jsx:282 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "高度な検索に関するドキュメント" -#: components/Search/AdvancedSearch.jsx:264 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "詳細な検索値の入力" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:172 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -373,382 +375,369 @@ msgid "" "like the Ansible inventory .ini file format." msgstr "SCM リビジョンを変更するプロジェクトの毎回の更新後に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。これは、Ansible インベントリーの .ini ファイル形式のような静的コンテンツが対象であることが意図されています。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "指定した実行回数後" -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "アラートモーダル" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "すべて" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "すべてのジョブタイプ" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "すべてのジョブ" -#: components/PromptDetail/PromptProjectDetail.jsx:48 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "ブランチの上書き許可" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -msgid "Allow Provisioning Callbacks" -msgstr "プロビジョニングコールバックの許可" +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 +msgid "Allow branch override" +msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "このプロジェクトを使用するジョブテンプレートで Source Control ブランチまたはリビジョンを変更できるようにします。" -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "許可された URI リスト (スペース区切り)" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "常時" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "Amazon EC2" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "エラーが発生しました" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "インベントリーを選択する必要があります" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "Ansible Tower" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "Ansible Tower ドキュメント。" -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "回答タイプ" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "回答の変数名" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "任意" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "アプリケーション" -#: screens/User/Users.jsx:36 -msgid "Application Name" -msgstr "アプリケーション名" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -msgid "Application access token" -msgstr "アプリケーションのアクセストークン" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "アプリケーション情報" -#: screens/User/UserTokenList/UserTokenList.jsx:111 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "アプリケーション名" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "アプリケーションが見つかりません。" -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 -#: util/getRelatedResourceDeleteDetails.js:215 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 +#: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "アプリケーション" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "アプリケーションおよびトークン" -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "承認" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "承認" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "承認済" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "承認済み - {0}。詳細は、アクティビティーストリームを参照してください。" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "{0} - {1} により承認済" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "4 月" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "このジョブを取り消してよろしいですか?" -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "次を削除してもよろしいですか:" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "ローカル認証を無効にしてもよろしいですか? これを行うと、ユーザーのログイン機能と、システム管理者がこの変更を元に戻す機能に影響を与える可能性があります。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "変更を保存せずにワークフロークリエーターを終了してもよろしいですか?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "このワークフローのすべてのノードを削除してもよろしいですか?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "以下のノードを削除してもよろしいですか?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "このリンクを削除してもよろしいですか?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "このノードを削除してもよろしいですか?" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "{1} から {0} のアクセスを削除しますか? これを行うと、チームのすべてのメンバーに影響します。" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "{username} からの {0} のアクセスを削除してもよろしいですか?" -#: screens/Job/JobOutput/JobOutput.jsx:844 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "このジョブを取り消す要求を送信してよろしいですか?" -#: components/AdHocCommands/AdHocDetailsStep.jsx:106 -#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "引数" -#: screens/Job/JobDetail/JobDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "アーティファクト" -#: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "関連付け" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "関連付けのロールエラー" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "関連付けモーダル" -#: components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "このフィールドには、少なくとも 1 つの値を選択する必要があります。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "8 月" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "認証" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "認証コードの有効期限" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "認証付与タイプ" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "自動" -#: screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "Azure AD" -#: screens/Setting/SettingList.jsx:60 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "Azure AD の設定" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:125 -#: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:133 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "戻る" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "認証情報に戻る" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "ダッシュボードに戻る" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "グループに戻る" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "ホストに戻る" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "インベントリーに戻る" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "ジョブに戻る" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "通知に戻る" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "組織に戻る" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "プロジェクトに戻る" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "スケジュールに戻る" -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: 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/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "設定に戻る" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "ソースに戻る" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "チームに戻る" -#: screens/Template/Template.jsx:138 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "テンプレートに戻る" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "トークンに戻る" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "ユーザーに戻る" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "ワークフローの承認に戻る" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "アプリケーションに戻る" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "認証情報タイプに戻る" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "実行環境に戻る" -#: screens/InstanceGroup/ContainerGroup.jsx:56 -#: screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "インスタンスグループに戻る" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "管理ジョブに戻る" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:69 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -756,11 +745,11 @@ msgid "" "path used to locate playbooks." msgstr "Playbook を見つけるために使用されるベースパスです。このパス内にあるディレクトリーは Playbook ディレクトリーのドロップダウンに一覧表示されます。ベースパスと選択されたPlaybook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "Basic 認証パスワード" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -768,1048 +757,1057 @@ msgid "" "provide a custom refspec." msgstr "チェックアウトするブランチです。ブランチ以外に、タグ、コミットハッシュ値、任意の参照 (refs) を入力できます。カスタムの refspec も指定しない限り、コミットハッシュ値や参照で利用できないものもあります。" -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "ブランドイメージ" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "参照" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "デフォルトでは、サービスの使用状況に関する解析データを収集して、Red Hat に送信します。サービスが収集するデータにはカテゴリーが 2 種類あります。詳細情報は、<0> Tower ドキュメントのページ を参照してください。この機能を無効にするには、以下のボックスのチェックを解除します。" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:184 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" 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:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "キャッシュタイムアウト" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "キャッシュタイムアウト" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "キャッシュのタイムアウト (秒)" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:126 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:134 -#: components/Lookup/HostFilterLookup.jsx:326 -#: 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: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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "取り消し" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "インベントリーソース同期の取り消し" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:820 -#: screens/Job/JobOutput/JobOutput.jsx:821 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "ジョブの取り消し" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "プロジェクトの同期の取り消し" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:210 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "同期の取り消し" -#: screens/Job/JobOutput/JobOutput.jsx:828 -#: screens/Job/JobOutput/JobOutput.jsx:831 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "ジョブの取り消し" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "リンク変更の取り消し" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "リンク削除の取り消し" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "ルックアップの取り消し" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "ノード削除の取り消し" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "元に戻すの取り消し" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "選択したジョブの取り消し" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "選択したジョブの取り消し" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "サブスクリプションの編集の取り消し" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:389 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "{0} の取り消し" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "取り消されました" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:152 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." msgstr "ログアグリゲーターホストとログアグリゲータータイプを指定せずにログアグリゲーターを有効にすることはできません。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "容量" -#: components/Search/AdvancedSearch.jsx:185 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 +msgid "Capacity Adjustment" +msgstr "" + +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "contains で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:209 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "endswith で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:173 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "exact で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "regex で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:197 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "startswith で大文字小文字の区別なし。" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:75 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." msgstr "この場所を変更するには {brandName} のデプロイ時に PROJECTS_ROOT を変更します。" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "変更済み" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "変更" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "チャネル" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:206 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "チェック" -#: components/Search/AdvancedSearch.jsx:251 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "特定フィールドもしくは関連オブジェクトが null かどうかをチェック。ブール値を想定。" -#: components/Search/AdvancedSearch.jsx:257 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "特定フィールドの値が提供されたリストに存在するかどうかをチェック (項目のコンマ区切りのリストを想定)。" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr ".json ファイルの選択" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "通知タイプの選択" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:28 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "Playbook ディレクトリーの選択" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "ソースコントロールタイプの選択" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "Webhook サービスの選択" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:199 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "ジョブタイプの選択" -#: components/AdHocCommands/AdHocDetailsStep.jsx:86 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "モジュールの選択" -#: screens/Inventory/shared/InventorySourceForm.jsx:147 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "ソースの選択" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "HTTP メソッドの選択" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." msgstr "ユーザーのプロンプトが表示される際に、必要な回答タイプまたは形式を選択します。それぞれのオプションの詳細については、Ansible Tower ドキュメントを参照してください。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -msgid "Choose an email option" -msgstr "メールオプションの選択" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "選択したリソースに適用するロールを選択します。選択したすべてのロールが、選択したすべてのリソースに適用されることに注意してください。" -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "新しいロールを受け取るリソースを選択します。次のステップで適用するロールを選択できます。ここで選択したリソースは、次のステップで選択したすべてのロールを受け取ることに注意してください。" -#: components/AddRole/AddResourceRole.jsx:194 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "新しいロールを受け取るリソースのタイプを選択します。たとえば、一連のユーザーに新しいロールを追加する場合は、ユーザーを選択して次へをクリックしてください。次のステップで特定のリソースを選択できるようになります。" -#: components/PromptDetail/PromptProjectDetail.jsx:40 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "クリーニング" -#: components/DataListToolbar/DataListToolbar.jsx:64 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "すべてのフィルターの解除" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "サブスクリプションの解除" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "サブスクリプションの選択解除" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "使用可能なノードをクリックして、新しいリンクを作成します。キャンセルするには、グラフの外側をクリックしてください。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 msgid "Click the Edit button below to reconfigure the node." msgstr "下の編集ボタンをクリックして、ノードを再構成します。" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "このボタンをクリックして、選択した認証情報と指定した入力を使用してシークレット管理システムへの接続を確認します。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "クリックして、このノードへの新しいリンクを作成します。" -#: screens/Template/Survey/MultipleChoiceField.jsx:114 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "クリックしてデフォルト値を切り替えます" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "クリックしてジョブの詳細を表示" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "クライアント ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "クライアント識別子" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "クライアント識別子" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "クライアントシークレット" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "クライアントタイプ" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "閉じる" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "サブスクリプションモーダルを閉じる" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "クラウド" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "折りたたむ" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "コマンド" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "準拠" -#: screens/Template/shared/JobTemplateForm.jsx:602 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "同時実行ジョブ" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "確認" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "削除の確認" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "ローカル認証の無効化の確認" -#: screens/User/shared/UserForm.jsx:87 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "パスワードの確認" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "取り消しジョブの確認" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "取り消しの確認" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "削除の確認" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "関連付けの解除の確認" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "リンク削除の確認" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "ノードの削除の確認" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "すべてのノードの削除の確認" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "すべて元に戻すことを確認" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "選択の確認" -#: screens/Job/JobDetail/JobDetail.jsx:236 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "コンテナーグループ" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "コンテナーグループ" -#: screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "コンテナーグループが見つかりません。" -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "コンテンツの読み込み" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "続行" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." msgstr "インベントリーソースの更新ジョブ用に Ansible が生成する出力のレベルを制御します。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。" -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "収束 (コンバージェンス)" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "収束 (コンバージェンス) 選択" -#: components/CopyButton/CopyButton.jsx:41 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "コピー" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "認証情報のコピー" -#: components/CopyButton/CopyButton.jsx:48 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "コピーエラー" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "実行環境のコピー" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "インベントリーのコピー" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "通知テンプレートのコピー" -#: screens/Project/ProjectList/ProjectListItem.jsx:211 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "プロジェクトのコピー" -#: components/TemplateList/TemplateListItem.jsx:207 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "テンプレートのコピー" -#: screens/Project/ProjectList/ProjectListItem.jsx:166 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "完全なリビジョンをクリップボードにコピーします。" -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "著作権" -#: screens/Template/shared/JobTemplateForm.jsx:406 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "作成" -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "新規アプリケーションの作成" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "新規認証情報の作成" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "新規ホストの作成" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "新規ジョブテンプレートの作成" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "新規通知テンプレートの作成" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "新規組織の作成" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "新規プロジェクトの作成" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "新規スケジュールの作成" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "新規チームの作成" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "新規ユーザーの作成" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "新規ワークフローテンプレートの作成" -#: screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "フィルターを適用して新しいスマートインベントリーを作成" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "新規コンテナーグループの作成" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "新規認証情報タイプの作成" -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "新規認証情報タイプの作成" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "新規実行環境の作成" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "新規グループの作成" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "新規ホストの作成" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "新規インスタンスグループの作成" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "新規インベントリーの作成" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "新規スマートインベントリーの作成" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "新規ソースの作成" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "ユーザートークンの作成" -#: 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:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:182 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:134 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "作成済み" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:158 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: 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:190 -#: components/TemplateList/TemplateList.jsx:208 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:137 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 -#: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:151 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: 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:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "作成者 (ユーザー名)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "作成者 (ユーザー名)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: 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:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 -#: util/getRelatedResourceDeleteDetails.js:173 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 +#: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "認証情報" -#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:73 msgid "Credential Input Sources" msgstr "認証情報の入力ソース" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "認証情報名" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "認証情報タイプ" -#: routeConfig.jsx:115 -#: 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 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "認証情報タイプ" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "認証情報が見つかりません。" -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "認証情報のパスワード" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "Kubernetes または OpenShift での認証に使用する認証情報。\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。空白のままにすると、基になる Pod のサービスアカウントが使用されます。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "保護されたコンテナーレジストリーで認証するための認証情報。" -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." msgstr "認証情報タイプが見つかりません。" -#: components/JobList/JobListItem.jsx:212 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:193 -#: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: 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/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: 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:374 -#: util/getRelatedResourceDeleteDetails.js:97 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 +#: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "認証情報" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:54 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "起動時にパスワードを必要とする認証情報は許可されていません。続行するには、次の認証情報を削除するか、同じ種類の認証情報に置き換えてください: {0}" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "現在のページ" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "カスタム Pod 仕様" -#: components/TemplateList/TemplateListItem.jsx:144 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "カスタム仮想環境 {0} は、実行環境に置き換える必要があります。" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:53 -msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -msgstr "カスタム仮想環境 {virtualEnvironment} は、実行環境に置き換える必要があります。" +#: components/TemplateList/TemplateListItem.js:155 +msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "メッセージのカスタマイズ…" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "Pod 仕様のカスタマイズ" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "削除済み" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "ダッシュボード" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "ダッシュボード (すべてのアクティビティー)" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "データ保持期間" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 -#: components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "日" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:173 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 msgid "Days of Data to Keep" msgstr "データの保持日数" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:108 msgid "Days remaining" msgstr "残りの日数" -#: screens/Job/JobOutput/JobOutput.jsx:698 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "デバッグ" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "12 月" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "デフォルト" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "デフォルトの実行環境" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "デフォルトの応答" -#: screens/Setting/SettingList.jsx:102 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "システムレベルの機能および関数の定義" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:235 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:246 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: 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: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:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "削除" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "すべてのグループおよびホストの削除" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:278 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "認証情報の削除" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "実行環境の削除" -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "ホストの削除" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "インベントリーの削除" -#: screens/Job/JobDetail/JobDetail.jsx:397 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "ジョブの削除" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "ジョブテンプレートの削除" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:348 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "通知の削除" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "組織の削除" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "プロジェクトの削除" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "質問の削除" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "スケジュールの削除" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "Survey の削除" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "チームの削除" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "ユーザーの削除" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "ユーザートークンの削除" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "ワークフロー承認の削除" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "新規ワークフロージョブテンプレートの削除" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "すべてのノードの削除" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "アプリケーションの削除" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "認証情報タイプの削除" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "エラーの削除" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "インスタンスグループの削除" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "インベントリーソースの削除" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:73 -msgid "Delete on Update" -msgstr "更新時のデプロイ" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "スマートインベントリーの削除" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1817,681 +1815,721 @@ msgid "" "of time required to complete an update." msgstr "更新の実行前にローカルリポジトリーを完全に削除します。リポジトリーのサイズによっては、更新の完了までにかかる時間が大幅に増大します。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 +msgid "Delete the project before syncing" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "このリンクの削除" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "このノードの削除" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "{pluralizedItemName} を削除しますか?" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "削除済み" -#: components/TemplateList/TemplateList.jsx:268 -#: screens/Credential/CredentialList/CredentialList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:230 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "削除エラー" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "削除エラー" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "拒否済み" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "拒否されました - {0}。詳細については、アクティビティーストリームを参照してください。" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "{0} に拒否されました - {1}" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "拒否" -#: screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "非推奨" -#: 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:186 -#: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:227 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: 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/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:57 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: 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:148 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: 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:246 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: 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:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "説明" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:251 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "送信先チャネル" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "送信先チャネルまたはユーザー" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "送信先 SMS 番号" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "送信先 SMS 番号" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "送信先チャネル" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "送信先チャネルまたはユーザー" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:61 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:71 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:63 -#: screens/InstanceGroup/InstanceGroup.jsx:64 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:144 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:37 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "詳細" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "詳細タブ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:240 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:294 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "SSL 検証の無効化" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "SSL 検証の無効化" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "関連付けの解除" -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "グループのホストとの関連付けを解除しますか?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "ホストのグループとの関連付けを解除しますか?" -#: screens/InstanceGroup/Instances/InstanceList.jsx:190 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "インスタンスグループへのインスタンスの関連付けを解除しますか?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "関連するグループの関連付けを解除しますか?" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "関連するチームの関連付けを解除しますか?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "ロールの関連付けの解除" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "ロールの関連付けの解除!" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "関連付けを解除しますか?" -#: screens/Template/shared/JobTemplateForm.jsx:480 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 +msgid "Discard local changes before syncing" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." msgstr "このジョブテンプレートで実施される作業を、指定した数のジョブスライスに分割し、それぞれインベントリーの部分に対して同じタスクを実行します。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "ドキュメント。" -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "完了" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "出力のダウンロード" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "メール" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "メールオプション" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:162 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" "executing job tasks." msgstr "このインベントリーでジョブを実行する際は常に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 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: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:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:200 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:149 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:153 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx: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: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 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "編集" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "認証情報の編集" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "認証情報プラグイン設定の編集" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:46 -#: screens/Setting/Settings.jsx:49 -#: screens/Setting/Settings.jsx:53 -#: screens/Setting/Settings.jsx:56 -#: screens/Setting/Settings.jsx:59 -#: screens/Setting/Settings.jsx:62 -#: screens/Setting/Settings.jsx:65 -#: screens/Setting/Settings.jsx:68 -#: screens/Setting/Settings.jsx:71 -#: screens/Setting/Settings.jsx:74 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:93 -#: screens/Setting/Settings.jsx:96 -#: screens/Setting/Settings.jsx:99 -#: screens/Setting/Settings.jsx:102 -#: screens/Setting/Settings.jsx:105 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Settings.jsx:111 -#: screens/Setting/Settings.jsx:114 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "詳細の編集" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "実行環境の編集" -#: screens/Host/HostGroups/HostGroupItem.jsx:50 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "グループの編集" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "ホストの編集" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "インベントリーの編集" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "リンクの編集" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "ノードの編集" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "通知テンプレートの編集" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "組織の編集" -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Project/ProjectList/ProjectListItem.jsx:202 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "プロジェクトの編集" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "質問の編集" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "スケジュールの編集" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:122 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "ソースの編集" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "チームの編集" -#: components/TemplateList/TemplateListItem.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:198 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:129 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "テンプレートの編集" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "ユーザーの編集" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "アプリケーションの編集" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "認証情報タイプの編集" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "詳細の編集" -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "グループの編集" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "ホストの編集" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "インスタンスグループの編集" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "このリンクの編集" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "このノードの編集" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 +msgid "Edit workflow" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "経過時間" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "経過時間" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 msgid "Elapsed time that the job ran" msgstr "ジョブ実行の経過時間" -#: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:71 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "メール" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" msgstr "メールオプション" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:64 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "同時実行ジョブの有効化" -#: screens/Template/shared/JobTemplateForm.jsx:609 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "ファクトストレージの有効化" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:215 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "HTTPS 証明書の検証を有効化" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -msgid "Enable Privilege Escalation" -msgstr "権限昇格の有効化" - -#: screens/Template/shared/JobTemplateForm.jsx:583 -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "Webhook の有効化" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "このワークフローのジョブテンプレートの Webhook を有効にします。" -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -msgid "Enable Webhooks" -msgstr "Webhook の有効化" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:159 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "外部ログの有効化" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:191 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "システムトラッキングファクトを個別に有効化" -#: components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "権限昇格の有効化" -#: screens/Setting/SettingList.jsx:56 -msgid "Enable simplified login for your {brandName} applications" -msgstr "{brandName} アプリケーションのログインの簡素化の有効化" +#: screens/Setting/SettingList.js:52 +msgid "Enable simplified login for your {0} applications" +msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:589 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "このテンプレートの Webhook を有効にします。" -#: components/Lookup/HostFilterLookup.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "有効化" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 +msgid "Enabled Options" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "有効な値" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "有効な変数" -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" -"callback URL. Using the URL a host can contact {BrandName}\n" +"callback URL. Using the URL a host can contact {0}\n" "and request a configuration update using this job\n" "template." -msgstr "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して {BrandName} に接続でき、このジョブテンプレートを使用して設定の更新を要求できます。" +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:232 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" @@ -2499,874 +2537,892 @@ msgid "" "template" msgstr "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して {brandName} に接続でき、このジョブテンプレートを使用して設定の更新を要求できます。" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:155 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "暗号化" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "終了" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "使用許諾契約書" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -msgid "End date/time" -msgstr "終了日時" - -#: components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "終了が期待値と一致しませんでした" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "使用許諾契約書" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "新規スマートインベントリーを作成するために 1 つ以上の検索フィルターを入力してください。" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "JSON または YAML 構文のいずれかを使用してインジェクターを入力します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "JSON または YAML 構文のいずれかを使用して入力を行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" -#: screens/Inventory/shared/SmartInventoryForm.jsx:97 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文間で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" -#: screens/Inventory/shared/InventoryForm.jsx:93 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "各行に、コンマなしでアノテーションタグを 1 つ入力してください。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." msgstr "各行に 1 つの IRC チャンネルまたはユーザー名を入力します。チャンネルのシャープ記号 (#) およびユーザーのアットマーク (@) 記号は不要です。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." msgstr "各行に 1 つの Slack チャンネルを入力します。チャンネルにはシャープ記号 (#) が必要です。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." msgstr "各行に 1 つのメールアドレスを入力し、この通知タイプの受信者リストを作成します。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." msgstr "各行に 1 つの電話番号を入力し、SMS メッセージのルート先を指定します。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." msgstr "Twilio の \"メッセージングサービス\" に関連付けられた番号を入力します (形式: +18005550199)。" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>aws_ec2 プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>azure_rm プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>azure_rm プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>gcp_compute プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>openstack プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>ovirt プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "変数を入力して、インベントリーソースを設定します。このプラグインの設定方法の詳細については、ドキュメントの <0>インベントリープラグイン および <1>vmware_vm_inventory プラグイン設定ガイドを参照してください。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "JSON または YAML 構文のいずれかを使用して変数を入力します。ラジオボタンを使用してこの構文を切り替えます。" -#: components/JobList/JobList.jsx:202 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 -#: screens/Job/JobOutput/JobOutput.jsx:703 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "エラー" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:415 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/Project/ProjectList/ProjectList.js:289 +msgid "Error fetching updated project" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "エラーメッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:424 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "エラーメッセージボディー" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "ワークフローの保存中にエラー!" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:51 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: 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:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:232 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: 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:193 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:197 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceList.jsx:230 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: 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: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: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:227 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:235 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:231 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: 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: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: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:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "エラー!" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "エラー:" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:670 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "イベント" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "イベント詳細" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "イベント詳細モーダル" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "イベントの概要はありません" -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "イベント" -#: components/Search/AdvancedSearch.jsx:167 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "完全一致 (指定されない場合のデフォルトのルックアップ)" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: components/Search/AdvancedSearch.js:165 +msgid "Exact search on id field." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "GIT ソースコントロールの URL の例は次のとおりです。" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "リモートアーカイブ Source Control のサンプル URL には以下が含まれます:" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "Subversion Source Control のサンプル URL には以下が含まれます:" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "以下に例を示します。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "例:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "親ノードの最終状態に関係なく実行します。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "親ノードが障害状態になったときに実行します。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "親ノードが正常な状態になったときに実行します。" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:85 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:72 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "実行環境" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 -#: routeConfig.jsx:140 -#: 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 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 -#: screens/Organization/Organizations.jsx:34 -#: util/getRelatedResourceDeleteDetails.js:87 -#: util/getRelatedResourceDeleteDetails.js:194 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 +msgid "Execution Environment Missing" +msgstr "" + +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 +#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "実行環境" -#: screens/Job/JobDetail/JobDetail.jsx:227 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "実行ノード" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -msgid "Execution environment image" -msgstr "実行環境イメージ" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:78 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "実行環境が存在しないか、削除されています。" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -msgid "Execution environment name" -msgstr "実行環境名" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "実行環境が見つかりません。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "保存せずに終了" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "展開" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "入力の展開" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "client_email、project_id、または private_key の少なくとも 1 つがファイルに存在する必要があります。" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -msgid "Expiration" -msgstr "有効期限" - -#: 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 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "有効期限" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "有効期限:" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "UTC の有効期限" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "{0} の有効期限" -#: components/JobList/JobListItem.jsx:240 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "説明" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "外部シークレット管理システム" -#: components/AdHocCommands/AdHocDetailsStep.jsx:295 -#: components/AdHocCommands/AdHocDetailsStep.jsx:296 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "追加変数" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 -#: screens/Project/ProjectList/ProjectListItem.jsx:76 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "終了日時:" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 +msgid "Fact Storage" +msgstr "" + +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "ファクト" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "失敗" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "失敗したホスト数" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "失敗したホスト" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "失敗したホスト" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "失敗したジョブ" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "1 つ以上のワークフロー承認を承認できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "ワークフローの承認を承認できませんでした。" -#: components/ResourceAccessList/ResourceAccessList.jsx:235 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "ロールを正しく割り当てられませんでした" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js: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:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "関連付けに失敗しました。" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "インベントリーソースの同期の取り消しに失敗しました。" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:181 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "プロジェクトの同期の取り消しに失敗しました。" -#: components/JobList/JobList.jsx:288 +#: components/JobList/JobList.js:302 msgid "Failed to cancel one or more jobs." msgstr "1 つ以上のジョブを取り消すことができませんでした。" -#: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:390 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "{0} を取り消すことができませんでした。" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "認証情報をコピーできませんでした。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "実行環境をコピーできませんでした" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "インベントリーをコピーできませんでした。" -#: screens/Project/ProjectList/ProjectListItem.jsx:219 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "プロジェクトをコピーできませんでした。" -#: components/TemplateList/TemplateListItem.jsx:212 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "テンプレートをコピーできませんでした。" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "アプリケーションを削除できませんでした。" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "認証情報を削除できませんでした。" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "グループ {0} を削除できませんでした。" -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "ホストを削除できませんでした。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "インベントリーソース {name} を削除できませんでした。" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "インベントリーを削除できませんでした。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "ジョブテンプレートを削除できませんでした。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:363 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "通知を削除できませんでした。" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 msgid "Failed to delete one or more applications." msgstr "1 つ以上のアプリケーションを削除できませんでした。" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:212 msgid "Failed to delete one or more credential types." msgstr "1 つ以上の認証情報タイプを削除できませんでした。" -#: screens/Credential/CredentialList/CredentialList.jsx:200 +#: screens/Credential/CredentialList/CredentialList.js:197 msgid "Failed to delete one or more credentials." msgstr "1 つ以上の認証情報を削除できませんでした。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:225 msgid "Failed to delete one or more execution environments" msgstr "1 つ以上の実行環境を削除できませんでした。" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "1 つ以上のグループを削除できませんでした。" -#: screens/Host/HostList/HostList.jsx:220 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 msgid "Failed to delete one or more hosts." msgstr "1 つ以上のホストを削除できませんでした。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 msgid "Failed to delete one or more instance groups." msgstr "1 つ以上のインスタンスグループを削除できませんでした。" -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 msgid "Failed to delete one or more inventories." msgstr "1 つ以上のインベントリーを削除できませんでした。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 +#: screens/Inventory/InventorySources/InventorySourceList.js:260 msgid "Failed to delete one or more inventory sources." msgstr "1 つ以上のインベントリーリソースを削除できませんでした。" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 msgid "Failed to delete one or more job templates." msgstr "1 つ以上のジョブテンプレートを削除できませんでした" -#: components/JobList/JobList.jsx:277 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "1 つ以上のジョブを削除できませんでした。" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 msgid "Failed to delete one or more notification template." msgstr "1 つ以上の通知テンプレートを削除できませんでした。" -#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "1 つ以上の組織を削除できませんでした。" -#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "1 つ以上のプロジェクトを削除できませんでした。" -#: components/Schedule/ScheduleList/ScheduleList.jsx:235 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "1 つ以上のスケジュールを削除できませんでした。" -#: screens/Team/TeamList/TeamList.jsx:203 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "1 つ以上のチームを削除できませんでした。" -#: components/TemplateList/TemplateList.jsx:274 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "1 つ以上のテンプレートを削除できませんでした。" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "1 つ以上のトークンを削除できませんでした。" -#: screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.js:205 msgid "Failed to delete one or more user tokens." msgstr "1 つ以上のユーザートークンを削除できませんでした。" -#: screens/User/UserList/UserList.jsx:196 +#: screens/User/UserList/UserList.js:193 msgid "Failed to delete one or more users." msgstr "1 人以上のユーザーを削除できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "1 つ以上のワークフロー承認を削除できませんでした。" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:180 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "組織を削除できませんでした。" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "プロジェクトを削除できませんでした。" -#: components/ResourceAccessList/ResourceAccessList.jsx:246 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "ロールを削除できませんでした。" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "ロールを削除できませんでした。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "スケジュールを削除できませんでした。" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "スマートインベントリーを削除できませんでした。" -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "チームを削除できませんでした。" -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "ユーザーを削除できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "ワークフロー承認を削除できませんでした。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "ワークフロージョブテンプレートを削除できませんでした。" -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "{name} を削除できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "1 つ以上のワークフロー承認を拒否できませんでした。" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 msgid "Failed to deny workflow approval." msgstr "ワークフローの承認を拒否できませんでした。" -#: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "1 つ以上のグループの関連付けを解除できませんでした。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "1 つ以上のホストの関連付けを解除できませんでした。" -#: screens/InstanceGroup/Instances/InstanceList.jsx:235 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "1 つ以上のインスタンスの関連付けを解除できませんでした。" -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "1 つ以上のチームの関連付けを解除できませんでした。" -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "カスタムログイン構成設定を取得できません。代わりに、システムのデフォルトが表示されます。" -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:176 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: screens/Project/ProjectList/ProjectList.js:293 +msgid "Failed to fetch the updated project data." +msgstr "" + +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "ジョブを起動できませんでした。" -#: contexts/Config.jsx:71 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "構成を取得できませんでした。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "フルノードリソースオブジェクトを取得できませんでした。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "ノード認証情報を取得できませんでした。" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "テスト通知の送信に失敗しました。" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "インベントリーソースを同期できませんでした。" -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "プロジェクトを同期できませんでした。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 msgid "Failed to sync some or all inventory sources." msgstr "一部またはすべてのインベントリーソースを同期できませんでした。" -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "ホストの切り替えに失敗しました。" -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "インスタンスの切り替えに失敗しました。" -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "通知の切り替えに失敗しました。" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "スケジュールの切り替えに失敗しました。" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:233 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "容量調整の更新に失敗しました。" -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "調査の更新に失敗しました。" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "ユーザートークンに失敗しました。" -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "失敗" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "False" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "2 月" -#: components/Search/AdvancedSearch.jsx:179 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "値を含むフィールド。" -#: components/Search/AdvancedSearch.jsx:203 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "値で終了するフィールド。" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "カスタムの Kubernetes または OpenShift Pod 仕様を渡すためのフィールド。" -#: components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "特定の正規表現に一致するフィールド。" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "値で開始するフィールド。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "第 5" -#: screens/Job/JobOutput/JobOutput.jsx:687 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "ファイルの相違点" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "ファイルのアップロードが拒否されました。単一の .json ファイルを選択してください。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "ファイル、ディレクトリー、またはスクリプト" -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "終了時間" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "終了日時" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "最初" -#: components/AddRole/AddResourceRole.jsx:129 -#: components/AddRole/AddResourceRole.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:132 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: 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:100 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "名" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "初回実行日時" -#: components/ResourceAccessList/ResourceAccessList.jsx:181 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "名" -#: components/Search/AdvancedSearch.jsx:266 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "最初に、キーを選択します" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "グラフを利用可能な画面サイズに合わせます" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "浮動" -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Follow" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3374,433 +3430,443 @@ msgid "" "executing the playbook." msgstr "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." msgstr "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "詳しい情報は以下の情報を参照してください:" -#: components/AdHocCommands/AdHocDetailsStep.jsx:184 -#: components/AdHocCommands/AdHocDetailsStep.jsx:185 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:425 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "フォーク" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "第 4" -#: components/Schedule/shared/ScheduleForm.jsx:183 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "頻度の詳細" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 -#: components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 +#: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "頻度が期待値と一致しませんでした" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "金" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "金曜" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: components/Search/AdvancedSearch.js:172 +msgid "Fuzzy search on id, name or description fields." +msgstr "" + +#: components/Search/AdvancedSearch.js:159 +msgid "Fuzzy search on name field." +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "Galaxy 認証情報" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy 認証情報は組織が所有している必要があります。" -#: screens/Job/JobOutput/JobOutput.jsx:695 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "ファクトの収集" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "サブスクリプションの取得" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "サブスクリプションの取得" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:145 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "Git" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "GitHub のデフォルト" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:63 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise 組織" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:66 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "GitHub Enterprise チーム" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "GitHub 組織" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "GitHub チーム" -#: screens/Setting/SettingList.jsx:64 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "GitHub 設定" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "グローバルなデフォルトの実行環境" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "世界中で利用可能" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "世界中で利用可能な実行環境を特定の組織に再割り当てすることはできません" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "最初のページに移動" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "最後のページに移動" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "次のページに移動" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "前のページに移動" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: screens/Setting/SettingList.jsx:68 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "Google OAuth2 の設定" -#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "Google OAuth2" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "Grafana" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "Grafana API キー" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:117 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:227 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "Greater than の比較条件" -#: components/Search/AdvancedSearch.jsx:233 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "Greater than or equal to の比較条件" -#: components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "グループ" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "グループの詳細" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "グループタイプ" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:232 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 -#: util/getRelatedResourceDeleteDetails.js:125 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 +#: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "グループ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:306 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "HTTP ヘッダー" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:301 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "HTTP メソッド" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "ヘルプ" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "非表示" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "説明の非表示" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "Hipchat" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:83 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "ホスト" -#: screens/Job/JobOutput/JobOutput.jsx:682 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "ホストの非同期失敗" -#: screens/Job/JobOutput/JobOutput.jsx:681 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "ホストの非同期 OK" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:642 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "ホスト設定キー" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "ホスト数" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "ホストの詳細" -#: screens/Job/JobOutput/JobOutput.jsx:673 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "ホストの失敗" -#: screens/Job/JobOutput/JobOutput.jsx:676 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "ホストの失敗" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "ホストフィルター" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "ホスト名" -#: screens/Job/JobOutput/JobOutput.jsx:675 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "ホスト OK" -#: screens/Job/JobOutput/JobOutput.jsx:680 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "ホストのポーリング" -#: screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "ホストの再試行" -#: screens/Job/JobOutput/JobOutput.jsx:677 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "ホストがスキップされました" -#: screens/Job/JobOutput/JobOutput.jsx:674 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "ホストの開始" -#: screens/Job/JobOutput/JobOutput.jsx:678 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "ホストに到達できません" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "ホストの詳細" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "ホストの詳細モーダル" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "ホストが見つかりませんでした。" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 msgid "Host status information for this job is unavailable." msgstr "このジョブのホストのステータス情報は利用できません。" -#: routeConfig.jsx:83 -#: 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 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: 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 -#: util/getRelatedResourceDeleteDetails.js:129 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 +#: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "ホスト" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "利用可能なホスト" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "残りのホスト" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "使用されたホスト" - -#: components/Schedule/shared/ScheduleForm.jsx:161 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "時間" -#: components/JobList/JobList.jsx:169 -#: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "ダッシュボード ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "パネル ID" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "ダッシュボード ID (オプション)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "パネル ID (オプション)" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "IRC ニック" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "IRC サーバーアドレス" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "IRC サーバーポート" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "IRC ニック" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "IRC サーバーアドレス" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "IRC サーバーパスワード" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "IRC サーバーポート" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:235 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "アイコン URL" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" "on the external source." msgstr "チェックが付けられている場合、子グループおよびホストのすべての変数が削除され、外部ソースにあるものによって置き換えられます。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -3811,430 +3877,459 @@ msgid "" "default group for the inventory." msgstr "チェックを付けると、以前は外部ソースにあり、現在は削除されているホストおよびグループがインベントリーから削除されます。インベントリーソースで管理されていなかったホストおよびグループは、次に手動で作成したグループにプロモートされます。プロモート先となる、手動で作成したグループがない場合、ホストおよびグループは、インベントリーの \"すべて\" のデフォルトグループに残ります。" -#: screens/Template/shared/JobTemplateForm.jsx:559 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." msgstr "有効な場合は、この Playbook を管理者として実行します。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。" -#: screens/Template/shared/JobTemplateForm.jsx:499 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:205 +#: components/AdHocCommands/AdHocDetailsStep.js:200 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:603 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "有効な場合は、このジョブテンプレートの同時実行が許可されます。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "有効な場合は、このワークフロージョブテンプレートの同時実行が許可されます。" -#: screens/Template/shared/JobTemplateForm.jsx:610 +#: screens/Template/shared/JobTemplateForm.js:613 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.js:151 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "アップグレードまたは更新の準備ができましたら、<0>お問い合わせください。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." msgstr "サブスクリプションをお持ちでない場合は、Red Hat にアクセスしてトライアルサブスクリプションを取得できます。" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "この特定のユーザーのアクセスのみを削除する場合は、チームから削除してください。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" msgstr "起動時およびプロジェクトの更新時にインベントリーソースを更新する場合は、起動時に更新をクリックして移動します" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "イメージ" -#: screens/Job/JobOutput/JobOutput.jsx:690 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "組み込みファイル" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." msgstr "ホストが利用可能かどうか、またホストを実行中のジョブに組み込む必要があるかどうかを示します。外部インベントリーの一部となっているホストについては、これはインベントリー同期プロセスでリセットされる場合があります。" -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "情報" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "開始:" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "開始:" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "開始者 (ユーザー名)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "インジェクターの設定" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "入力の設定" -#: screens/Inventory/shared/InventoryForm.jsx:78 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "Insights 認証情報" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "Insights for Ansible Automation Platform" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Insights for Ansible Automation Platform ダッシュボード" -#: components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "Insights システム ID" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "インスタンス" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "インスタンスフィルター" -#: screens/Job/JobDetail/JobDetail.jsx:230 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "インスタンスグループ" -#: 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: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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "インスタンスグループ" -#: components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "インスタンス ID" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "インスタンスグループ" -#: screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "インスタンスグループが見つかりません。" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 +msgid "Instance group used capacity" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "インスタンスグループ" -#: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "インスタンス" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "整数" -#: util/validators.jsx:67 +#: util/validators.js:88 msgid "Invalid email address" msgstr "無効なメールアドレス" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "ファイル形式が無効です。有効な Red Hat サブスクリプションマニフェストをアップロードしてください。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "無効なリンクターゲットです。子ノードまたは祖先ノードにリンクできません。グラフサイクルはサポートされていません。" -#: screens/Login/Login.jsx:135 +#: util/validators.js:33 +msgid "Invalid time format" +msgstr "" + +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "無効なユーザー名またはパスワードです。やり直してください。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 -#: util/getRelatedResourceDeleteDetails.js:66 -#: util/getRelatedResourceDeleteDetails.js:208 -#: util/getRelatedResourceDeleteDetails.js:276 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 +#: util/getRelatedResourceDeleteDetails.js:201 +#: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "インベントリー" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "ソースを含むインベントリーはコピーできません。" -#: components/HostForm/HostForm.jsx:30 -#: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:253 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:164 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:47 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "インベントリー" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "インベントリー (名前)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "インベントリーファイル" -#: components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "インベントリー ID" -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "インベントリーソース" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "インベントリーソース同期" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:102 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "インベントリーソース同期エラー" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: util/getRelatedResourceDeleteDetails.js:73 -#: util/getRelatedResourceDeleteDetails.js:153 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 +#: util/getRelatedResourceDeleteDetails.js:66 +#: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "インベントリーソース" -#: components/JobList/JobList.jsx:181 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "インベントリー同期" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "インベントリー更新" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "インベントリーファイル" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "インベントリーが見つかりません。" -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "インベントリーの同期" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "インベントリーの同期の失敗" -#: screens/Job/JobOutput/JobOutput.jsx:684 +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "項目の失敗" -#: screens/Job/JobOutput/JobOutput.jsx:683 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "項目 OK" -#: screens/Job/JobOutput/JobOutput.jsx:685 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "項目のスキップ" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "項目" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "ページ別の項目" -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:90 -#: screens/Project/ProjectList/ProjectListItem.jsx:69 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "ジョブ ID:" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "JSON" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "JSON タブ" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "JSON:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "1 月" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "ジョブ" -#: components/JobList/JobListItem.jsx:96 -#: 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 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "ジョブキャンセルエラー" -#: screens/Job/JobDetail/JobDetail.jsx:410 -#: screens/Job/JobOutput/JobOutput.jsx:852 -#: screens/Job/JobOutput/JobOutput.jsx:853 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "ジョブ削除エラー" -#: screens/Job/JobDetail/JobDetail.jsx:243 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "ジョブスライス" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:479 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "ジョブスライス" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "ジョブステータス" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:220 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:292 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:520 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "ジョブタグ" -#: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:199 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:29 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "ジョブテンプレート" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:40 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "ジョブテンプレートのデフォルトの認証情報は、同じタイプの認証情報に置き換える必要があります。続行するには、次のタイプの認証情報を選択してください: {0}" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 -#: util/getRelatedResourceDeleteDetails.js:107 -#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:100 +#: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "ジョブテンプレート" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "ノードの作成時または編集時に、インベントリーまたはプロジェクトが欠落しているジョブテンプレートは選択できません。別のテンプレートを選択するか、欠落しているフィールドを修正して続行してください。" @@ -4242,696 +4337,694 @@ msgstr "ノードの作成時または編集時に、インベントリーまた msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "ノードの作成時または編集時に、パスワードの入力を求める認証情報を持つジョブテンプレートを選択できない" -#: components/JobList/JobList.jsx:177 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:251 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "ジョブタイプ" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "ジョブステータス" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "ジョブステータスのグラフタブ" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "ジョブテンプレート" -#: components/JobList/JobList.jsx:160 -#: components/JobList/JobList.jsx:236 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:74 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:73 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:90 -#: screens/Setting/Settings.jsx:72 -#: screens/Template/Template.jsx:164 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "ジョブ" -#: screens/Setting/SettingList.jsx:95 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "ジョブ設定" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "7 月" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "6 月" -#: components/Search/AdvancedSearch.jsx:132 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "キー" -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "キー選択" -#: components/Search/AdvancedSearch.jsx:126 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "キー先行入力" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "キーワード" -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "LDAP" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "LDAP 1" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "LDAP 2" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "LDAP 3" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "LDAP 4" -#: screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "LDAP 5" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "LDAP のデフォルト" -#: screens/Setting/SettingList.jsx:72 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "LDAP 設定" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "LDAP1" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "LDAP2" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "LDAP3" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "LDAP4" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:173 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "ラベル名" -#: components/JobList/JobListItem.jsx:225 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:187 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:102 -#: components/TemplateList/TemplateListItem.jsx:306 -#: screens/Job/JobDetail/JobDetail.jsx:277 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:392 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "ラベル" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "最終" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "最終ジョブステータス" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "前回のログイン" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:282 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:187 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "最終更新日" -#: components/AddRole/AddResourceRole.jsx:133 -#: components/AddRole/AddResourceRole.jsx:147 -#: components/ResourceAccessList/ResourceAccessList.jsx:136 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: 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:106 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "姓" -#: components/TemplateList/TemplateList.jsx:222 -#: components/TemplateList/TemplateListItem.jsx:153 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "最終実行日時" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "最終実行" -#: components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "最後のジョブ" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -msgid "Last job run" -msgstr "最後のジョブ実行" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "最終更新日" -#: components/ResourceAccessList/ResourceAccessList.jsx:182 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "姓" -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "最終使用日時" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:106 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "起動" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "管理ジョブの起動" -#: components/TemplateList/TemplateListItem.jsx:173 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "テンプレートの起動" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "管理ジョブの起動" -#: components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "テンプレートの起動" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "ワークフローの起動" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "起動 | {0}" -#: components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "起動者" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "起動者 (ユーザー名)" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "Insights for Ansible Automation Platform の詳細" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "実行環境を世界中で利用できるようにするには、このフィールドを空白のままにします。" -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "凡例" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "Less than の比較条件" -#: components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "Less than or equal to の比較条件" -#: components/AdHocCommands/AdHocDetailsStep.jsx:164 -#: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:207 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:76 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:441 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "制限" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "利用可能なノードへのリンク" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "ロード中" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "ローカルタイムゾーン" -#: components/Schedule/shared/ScheduleForm.jsx:138 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "ローカルタイムゾーン" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "ログイン" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -msgid "Log aggregator test sent successfully." -msgstr "ログアグリゲーターのテストの送信に成功しました。" - -#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "ロギング" -#: screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "ロギング設定" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:166 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "ログアウト" -#: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "ルックアップモーダル" -#: components/Search/AdvancedSearch.jsx:150 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "ルックアップ選択" -#: components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "ルックアップタイプ" -#: components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "ルックアップの先行入力" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 -#: screens/Project/ProjectList/ProjectListItem.jsx:67 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "直近の同期" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:249 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "マシンの認証情報" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:98 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "マシンの認証情報" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -msgid "Managed by Tower" -msgstr "Tower による管理" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 +msgid "Managed" +msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "管理ノード" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:37 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "管理ジョブ" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "管理ジョブ" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "管理ジョブ" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "管理ジョブの起動エラー" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "管理ジョブが見つかりません。" -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "管理ジョブ" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:76 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: 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:144 -#: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "手動" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "3 月" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "Mattermost" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "最大ホスト数" -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "最大" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "最大長" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "5 月" -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "メンバー" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "メタデータ" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "メトリック" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "メトリックス" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "最小" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "最小長" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:33 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンス数" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:43 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンスの割合" -#: components/Schedule/shared/ScheduleForm.jsx:160 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "分" -#: screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.js:96 +msgid "Miscellaneous Authentication" +msgstr "" + +#: screens/Setting/SettingList.js:106 +msgid "Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "その他のシステム" -#: screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "その他のシステム設定" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "不明" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:75 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "不足しているリソース" -#: components/Lookup/HostFilterLookup.jsx:357 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 -#: screens/User/UserTokenList/UserTokenList.jsx:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "修正済み" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:162 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:212 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:141 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 -#: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:155 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: 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:144 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "変更者 (ユーザー名)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "変更者 (ユーザー名)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "モジュール" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "月" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "月曜" -#: components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "月" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "詳細情報" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "詳細情報: " -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "複数選択" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "複数選択" -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "複数の選択 (複数の選択)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "複数の選択 (単一の選択)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "複数の選択オプション" -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:153 -#: components/AddRole/AddResourceRole.jsx:169 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: 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: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: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: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:161 -#: components/Schedule/ScheduleList/ScheduleList.jsx:181 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:187 -#: components/TemplateList/TemplateList.jsx:220 -#: components/TemplateList/TemplateListItem.jsx:126 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -4944,291 +5037,307 @@ msgstr "複数の選択オプション" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: 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:128 -#: screens/Credential/CredentialList/CredentialList.jsx:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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: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: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:91 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupsList.jsx:158 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: 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:240 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: 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: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:49 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: 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:143 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: 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: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:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:131 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:168 -#: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx: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:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: 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:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "名前" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "ナビゲーション" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "なし" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "未更新" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "期限切れなし" -#: components/JobList/JobList.jsx:196 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "新規" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:80 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:135 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "次へ" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:163 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "次回実行日時" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:262 msgid "No" msgstr "不可" -#: screens/Job/JobOutput/JobOutput.jsx:691 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "一致するホストがありません" -#: screens/Job/JobOutput/JobOutput.jsx:679 -#: screens/Job/JobOutput/JobOutput.jsx:692 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "残りのホストがありません" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "JSON は利用できません" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "ジョブはありません" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "標準エラーは利用できません" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "標準出力は利用できません" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "インベントリー同期の失敗はありません。" -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "項目は見つかりません。" -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "結果が見つかりません" -#: components/Search/AdvancedSearch.jsx:100 -#: components/Search/AdvancedSearch.jsx:136 -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "結果が見つかりません" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "サブスクリプションが見つかりません" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "Survey の質問は見つかりません。" -#: components/PaginatedDataList/PaginatedDataList.jsx:88 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "{pluralizedItemName} が見つかりません" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "ノードタイプ" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "ノードタイプ" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "なし" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "なし (1回実行)" -#: components/Schedule/shared/ScheduleForm.jsx:159 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "なし (1回実行)" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:28 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "標準ユーザー" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "見つかりません" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "設定されていません" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "インベントリーの同期に設定されていません。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." msgstr "このグループに直接含まれるホストのみの関連付けを解除できることに注意してください。サブグループのホストの関連付けの解除については、それらのホストが属するサブグループのレベルで直接実行する必要があります。" -#: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 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" @@ -5236,11 +5345,19 @@ msgid "" "with directly and indirectly." msgstr "ホストがそのグループの子のメンバーでもある場合は、関連付けを解除した後も一覧にグループが表示される場合があることに注意してください。この一覧には、ホストが直接的および間接的に関連付けられているすべてのグループが表示されます。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "注: このフィールドは、リモート名が \"origin\" であることが前提です。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -5250,324 +5367,319 @@ msgid "" "password information." msgstr "GitHub または Bitbucket の SSH プロトコルを使用している場合は、SSH キーのみを入力し、ユーザー名 (git 以外) を入力しないでください。また、GitHub および Bitbucket は、SSH の使用時のパスワード認証をサポートしません。GIT の読み取り専用プロトコル (git://) はユーザー名またはパスワード情報を使用しません。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "通知の色" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "通知テンプレートテストは見つかりません。" -#: 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 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 +#: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "通知テンプレート" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "通知タイプ" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "通知の色" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "通知が正常に送信されました" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "通知がタイムアウトしました" -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "通知タイプ" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:150 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "通知" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "11 月" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "OK" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "実行回数" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "10 月" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "オフ" -#: components/AdHocCommands/AdHocDetailsStep.jsx:212 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "オン" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "障害発生時" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "成功時" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "指定日" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "曜日" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "グループ化のみ" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "オプションの詳細" -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." msgstr "「dev」、「test」などのこのジョブテンプレートを説明するオプションラベルです。ラベルを使用し、ジョブテンプレートおよび完了したジョブの分類およびフィルターを実行できます。" -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "必要に応じて、ステータスの更新を Webhook サービスに送信しなおすのに使用する認証情報を選択します。" -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:165 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:167 -#: components/PromptDetail/PromptProjectDetail.jsx:93 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:552 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "オプション" -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:98 -#: components/PromptDetail/PromptProjectDetail.jsx:57 -#: components/PromptDetail/PromptProjectDetail.jsx:67 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: components/TemplateList/TemplateListItem.jsx:240 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: 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:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:55 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:135 -#: screens/Project/ProjectList/ProjectListItem.jsx:236 -#: screens/Project/ProjectList/ProjectListItem.jsx:247 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: 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:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "組織" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "組織 (名前)" -#: screens/Team/TeamList/TeamList.jsx:133 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "組織名" -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "組織が見つかりません。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: 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 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 -#: util/getRelatedResourceDeleteDetails.js:238 -#: util/getRelatedResourceDeleteDetails.js:272 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 +#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "組織" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "他のプロンプト" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "コンプライアンス違反" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "出力" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "上書き" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -msgid "Overwrite Variables" -msgstr "変数の上書き" +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 +msgid "Overwrite local groups and hosts from remote inventory source" +msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 +msgid "Overwrite local variables from remote inventory source" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "変数の上書き" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "POST" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "PUT" -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "Pagerduty" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:206 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "Pagerduty サブドメイン" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "Pagerduty サブドメイン" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "ページネーション" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "パンダウン" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "パンレフト" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "パンライト" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "パンアップ" -#: components/AdHocCommands/AdHocDetailsStep.jsx:266 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "追加のコマンドライン変更を渡します。2 つの Ansible コマンドラインパラメーターがあります。" -#: screens/Template/shared/JobTemplateForm.jsx:414 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5575,176 +5687,172 @@ msgid "" "documentation for example syntax." msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについてはドキュメントを参照してください。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: 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:76 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "パスワード" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "過去 24 時間" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "過去 1 ヵ月" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "過去 2 週間" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "過去 1 週間" -#: components/JobList/JobList.jsx:197 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "保留中" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "保留中のワークフロー承認" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "保留中の削除" -#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "検索を実行して、ホストフィルターを定義します。" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -msgid "Personal access token" -msgstr "パーソナルアクセストークン" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "プレイ" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "再生回数" -#: screens/Job/JobOutput/JobOutput.jsx:696 +#: screens/Job/JobOutput/JobOutput.js:768 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:355 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "Playbook" -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "Playbook チェック" -#: screens/Job/JobOutput/JobOutput.jsx:697 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "Playbook の完了" -#: components/PromptDetail/PromptProjectDetail.jsx:103 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:179 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:85 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "Playbook ディレクトリー" -#: components/JobList/JobList.jsx:182 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "Playbook 実行" -#: screens/Job/JobOutput/JobOutput.jsx:688 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "Playbook の開始" -#: components/TemplateList/TemplateList.jsx:204 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "Playbook 名" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "Playbook 実行" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "プレイ" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "Survey の質問を追加してください。" -#: components/PaginatedDataList/PaginatedDataList.jsx:87 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "このリストに入力するには {pluralizedItemName} を追加してください" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "開始ボタンをクリックして開始してください。" -#: util/validators.jsx:116 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "有効な URL を入力してください。" -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "値を入力してください。" -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "ログインしてください" -#: components/Schedule/shared/ScheduleForm.jsx:575 +#: components/Schedule/shared/ScheduleForm.js:568 msgid "Please select a day number between 1 and 31." msgstr "1 から 31 までの日付を選択してください。" -#: screens/Template/shared/JobTemplateForm.jsx:170 +#: screens/Template/shared/JobTemplateForm.js:173 msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。" -#: components/Schedule/shared/ScheduleForm.jsx:567 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "開始日時より後の終了日時を選択してください。" -#: components/Lookup/HostFilterLookup.jsx:297 +#: components/Lookup/HostFilterLookup.js:328 msgid "Please select an organization before editing the host filter" msgstr "組織を選択してからホストフィルターを編集します。" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "Pod 仕様の上書き" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "ポリシーインスタンスの最小値" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:38 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "ポリシーインスタンスの割合" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "外部のシークレット管理システムからフィールドにデータを入力します" -#: components/Lookup/HostFilterLookup.jsx:287 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" @@ -5753,130 +5861,141 @@ msgid "" "examples." msgstr "検索フィルターを使用して、このインベントリーのホストにデータを入力します (例: ansible_facts.ansible_distribution:\"RedHat\")。詳細な構文と例については、ドキュメントを参照してください。構文と例の詳細については、Ansible Tower のドキュメントを参照してください。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:98 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "ポート" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "複数の親がある場合にこのノードを実行するための前提条件。参照: " -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -msgid "Press 'Enter' to add more answer choices. One answer choice per line." -msgstr "Enter キーを押して、回答の選択肢をさらに追加します。回答の選択肢は、1 行に 1 つです。" +#: screens/Template/Survey/MultipleChoiceField.js:64 +msgid "" +"Press 'Enter' to add more answer choices. One answer\n" +"choice per line." +msgstr "" -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "Enter キーを押して編集します。編集を終了するには、ESC キーを押します。" -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "プレビュー" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "秘密鍵のパスフレーズ" -#: screens/Template/shared/JobTemplateForm.jsx:558 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "権限昇格" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "権限昇格のパスワード" -#: components/JobList/JobListItem.jsx:196 -#: 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 -#: components/TemplateList/TemplateListItem.jsx:268 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:213 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "プロジェクト" -#: components/PromptDetail/PromptProjectDetail.jsx:100 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:176 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:63 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "プロジェクトのベースパス" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "プロジェクトの同期" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "プロジェクトの同期エラー" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "プロジェクトの更新" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "プロジェクトが見つかりません。" -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "プロジェクトの同期の失敗" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: 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 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 -#: util/getRelatedResourceDeleteDetails.js:201 -#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:194 +#: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "プロジェクト" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "子グループおよびホストのプロモート" -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:628 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "プロンプト" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "プロンプトオーバーライド" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "起動プロンプト" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "プロンプト | {0}" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "プロンプト値" -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -5884,7 +6003,7 @@ msgid "" "documentation for more information and examples on patterns." msgstr "Playbook によって管理されるか、またはその影響を受けるホストの一覧をさらに制限するためのホストのパターンを指定します。複数のパターンが許可されます。パターンについての詳細およびサンプルについては、Ansible ドキュメントを参照してください。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -5892,17 +6011,17 @@ msgid "" "information and examples on patterns." msgstr "Playbook によって管理されるか、またはその影響を受けるホストの一覧をさらに制限するためのホストのパターンを指定します。複数のパターンが許可されます。パターンについての詳細およびサンプルについては、Ansible ドキュメントを参照してください。" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:159 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "このフィールドに値を入力するか、起動プロンプトを表示するオプションを選択します。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:270 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." msgstr "YAML または JSON のいずれかを使用してキーと値のペアを提供します。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -5910,788 +6029,818 @@ msgid "" "retrieving renewal or expanded subscriptions." msgstr "以下に Red Hat または Red Hat Satellite の認証情報を指定して、利用可能なライセンス一覧から選択してください。使用する認証情報は、更新または延長サブスクリプションの取得で将来使用するために保存されます。" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "Red Hat または Red Hat Satellite の認証情報を提供して、Insights for Ansible Automation Platform を有効にします。" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:629 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "プロビジョニングコールバック URL" -#: screens/Template/shared/JobTemplateForm.jsx:624 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "プロビジョニングコールバックの詳細" -#: screens/Template/shared/JobTemplateForm.jsx:563 -#: screens/Template/shared/JobTemplateForm.jsx:566 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "プロビジョニングコールバック" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "プル" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "質問" -#: screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "RADIUS" -#: screens/Setting/SettingList.jsx:76 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "RADIUS 設定" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:201 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "読み込み" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "最近のジョブ" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "最近の求人リストタブ" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "最近のテンプレート" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "最近のテンプレートリストタブ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:88 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 +msgid "Recent jobs" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "受信者リスト" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "受信者リスト" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:148 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "Red Hat サブスクリプションマニュフェスト" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "リダイレクト URI" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "リダイレクト URI" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "ダッシュボードへのリダイレクト" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "サブスクリプションの詳細へのリダイレクト" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "参照:" -#: screens/Template/shared/JobTemplateForm.jsx:434 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." msgstr "設定ファイルの詳細は、Ansible ドキュメントを参照してください。" -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "トークンの更新" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "トークンの有効期限の更新" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: screens/Project/ProjectList/ProjectListItem.js:130 +msgid "Refresh for revision" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:132 +msgid "Refresh project revision" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "リージョン" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "レジストリーの認証情報" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "一致するホスト名のみがインポートされる正規表現。このフィルターは、インベントリープラグインフィルターが適用された後、後処理ステップとして適用されます。" -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "関連するグループ" -#: components/JobList/JobListItem.jsx:129 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:369 -#: screens/Job/JobDetail/JobDetail.jsx:377 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 +msgid "Related search type" +msgstr "" + +#: components/Search/AdvancedSearch.js:146 +msgid "Related search type typeahead" +msgstr "" + +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "再起動" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "ジョブの再起動" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "すべてのホストの再起動" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "失敗したホストの再起動" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "再起動時" -#: components/JobList/JobListItem.jsx:109 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "ホストパラメーターを使用した再起動" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:147 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "リモートアーカイブ" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "削除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "すべてのノードの削除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "リンクの削除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "ノードの削除" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "更新の実行前にローカルの変更を削除します。" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "{0} アクセスの削除" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "{0} チップの削除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "このリンクを削除すると、ブランチの残りの部分が孤立し、起動直後に実行します。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "繰り返しの頻度" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "置換" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:50 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "フィールドを新しい値に置き換え" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "サブスクリプションの要求" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "必須" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "リソース名" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "リソースが削除されました" -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "リソース" -#: components/TemplateList/TemplateListItem.jsx:133 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "リソースがこのテンプレートにありません。" -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "初期値を復元します。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "ホスト変数の指定された辞書から有効な状態を取得します。有効な変数は、ドット表記を使用して指定できます (例: 「foo.bar」)。" -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:837 -#: screens/Job/JobOutput/JobOutput.jsx:840 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "戻る" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "サブスクリプション管理へ戻る" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "これ以外の値と他のフィルターが含まれる結果を返します。" -#: components/Search/AdvancedSearch.jsx:106 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "このフィルターおよび他のフィルターを満たす結果を返します。何も選択されていない場合は、これがデフォルトのセットタイプです。" -#: components/Search/AdvancedSearch.jsx:112 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "この 1 つまたは他のフィルターを満たす結果を返します。" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "戻す" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "すべて元に戻す" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "すべてをデフォルトに戻す" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:49 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "フィールドを以前保存した値に戻す" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "設定を元に戻す" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "工場出荷時のデフォルトに戻します。" -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:171 -#: screens/Project/ProjectList/ProjectListItem.jsx:156 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "リビジョン" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "リビジョン #" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: 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:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "ロール" -#: components/ResourceAccessList/ResourceAccessList.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:156 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "ロール" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "実行" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "コマンドの実行" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:123 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "コマンドの実行" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "実行する間隔" -#: components/Schedule/shared/ScheduleForm.jsx:154 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "実行頻度" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "実行:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "実行タイプ" -#: components/JobList/JobList.jsx:199 -#: components/TemplateList/TemplateListItem.jsx:105 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "実行中" -#: screens/Job/JobOutput/JobOutput.jsx:689 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "実行中のハンドラー" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "実行中のジョブ" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:170 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "実行中のジョブ" -#: screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "SAML" -#: screens/Setting/SettingList.jsx:80 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "SAML 設定" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "SCM 更新" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "ソーシャル" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "SSH パスワード" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "SSL 接続" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "開始" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:93 -#: screens/Project/ProjectList/ProjectListItem.jsx:72 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "ステータス:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "土" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "土曜" -#: components/AddRole/AddResourceRole.jsx:265 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:611 -#: components/Schedule/shared/ScheduleForm.jsx:617 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "保存" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "保存して終了" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:232 -msgid "Save and enable log aggregation before testing the log aggregator." -msgstr "ログ集計機能をテストする前に、ログ集計を保存して有効にします。" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "リンクの変更の保存" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "正常に保存が実行されました!" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "スケジュールの詳細" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "スケジュールの詳細" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "スケジュールはアクティブです" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "スケジュールは非アクティブです" -#: components/Schedule/shared/ScheduleForm.jsx:531 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "スケジュールにルールがありません" -#: components/Schedule/ScheduleList/ScheduleList.jsx:222 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:157 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "スケジュール" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:126 -#: screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "範囲" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "最初にスクロール" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "最後にスクロール" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "次へスクロール" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "前にスクロール" -#: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "検索" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "ジョブの実行中は検索が無効になっています" -#: components/Search/AdvancedSearch.jsx:275 -#: components/Search/Search.jsx:286 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "検索送信ボタン" -#: components/Search/Search.jsx:275 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "テキスト入力の検索" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "第 2" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: components/PromptDetail/PromptProjectDetail.jsx:96 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "秒" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "左側のエラーを参照してください" -#: components/JobList/JobListItem.jsx:68 -#: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "選択" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "認証情報タイプの選択" -#: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "グループの選択" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "ホストの選択" -#: components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "入力の選択" -#: screens/InstanceGroup/Instances/InstanceList.jsx:221 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "インスタンスの選択" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "アイテムの選択" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "リストからアイテムの選択" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "ラベルの選択" -#: components/AddRole/AddResourceRole.jsx:254 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "適用するロールの選択" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "チームの選択" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "JSON 形式のサービスアカウントキーを選択して、次のフィールドに自動入力します。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "ノードタイプの選択" -#: components/AddRole/AddResourceRole.jsx:190 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "リソースタイプの選択" -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." msgstr "ジョブテンプレートにブランチを選択してください。このブランチは、ブランチを求めるすべてのジョブテンプレートノードに適用されます。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 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:198 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "ワークフローにブランチを選択してください。このブランチは、ブランチを求めるジョブテンプレートノードすべてに適用されます。" -#: screens/Credential/shared/CredentialForm.jsx:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "認証情報タイプの選択" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "インスタンスの選択" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "取り消すジョブの選択" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "メトリックの選択" -#: components/AdHocCommands/AdHocDetailsStep.jsx:79 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "モジュールの選択" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "Playbook の選択" -#: screens/Template/shared/JobTemplateForm.jsx:323 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "実行環境を編集する前にプロジェクトを選択してください。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "承認する行の選択" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "削除する行の選択" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "拒否する行の選択" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "関連付けを解除する行の選択" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "サブスクリプションの選択" -#: components/Schedule/shared/ScheduleForm.jsx:84 -msgid "Select a valid date and time for this field" -msgstr "このフィールドに有効な日時を選択" - -#: components/HostForm/HostForm.jsx:54 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: components/Schedule/shared/ScheduleForm.jsx:88 -#: components/Schedule/shared/ScheduleForm.jsx:92 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: 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:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 -#: screens/User/shared/UserForm.jsx:119 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "このフィールドの値の選択" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "Webhook サービスを選択します。" -#: components/DataListToolbar/DataListToolbar.jsx:73 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "すべて選択" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "アクティビティータイプの選択" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 msgid "Select an instance and a metric to show chart" msgstr "グラフを表示するインスタンスとメトリックを選択します" -#: 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/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." +msgstr "" -#: screens/Project/shared/ProjectForm.jsx:204 +#: components/LaunchPrompt/steps/SurveyStep.js:128 +msgid "Select an option" +msgstr "" + +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "デフォルトの実行環境を編集する前に、組織を選択してください。" -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -6700,326 +6849,331 @@ msgid "" "credential(s) become the defaults that can be updated at run time." msgstr "このジョブが実行されるノードへのアクセスを許可する認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシンの認証情報 (SSH) については、認証情報を選択せずに「起動プロンプト」を選択すると、実行時にマシン認証情報を選択する必要があります。認証情報を選択し、「起動プロンプト」にチェックを付けている場合は、選択した認証情報が実行時に更新できるデフォルトになります。" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:88 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." msgstr "プロジェクトのベースパスにあるデイレクトリーの一覧から選択します。ベースパスと Playbook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "リストから項目の選択" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "ジョブタイプの選択" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: components/LaunchPrompt/steps/SurveyStep.js:174 +msgid "Select option(s)" +msgstr "" + +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "期間の選択" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "適用するロールの選択" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132 msgid "Select source path" msgstr "ソースパスの選択" -#: screens/Dashboard/DashboardGraph.jsx:148 -#: screens/Dashboard/DashboardGraph.jsx:149 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "状態の選択" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "タグの選択" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "このコマンドを内部で実行する実行環境を選択します。" -#: screens/Inventory/shared/SmartInventoryForm.jsx:90 +#: screens/Inventory/shared/SmartInventoryForm.js:89 msgid "Select the Instance Groups for this Inventory to run on." msgstr "このインベントリーを実行するインスタンスグループを選択します。" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "この組織を実行するインスタンスグループを選択します。" -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "この組織を実行するインスタンスグループを選択します。" -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "このトークンが属するアプリケーションを選択します。" -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "そのコマンドを実行するためにリモートホストへのアクセス時に使用する認証情報を選択します。Ansible がリモートホストにログインするために必要なユーザー名および SSH キーまたはパスワードが含まれる認証情報を選択してください。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 -msgid "Select the default execution environment for this organization to run on." -msgstr "この組織の実行に使用するデフォルトの実行環境を選択します。" - -#: screens/Template/shared/JobTemplateForm.jsx:322 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "このジョブテンプレートの実行環境を選択します。" -#: components/Lookup/InventoryLookup.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:286 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." msgstr "このジョブで管理するホストが含まれるインベントリーを選択してください。" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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:33 -#: components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "このホストが属するインベントリーを選択します。" -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: screens/Template/shared/JobTemplateForm.js:361 msgid "Select the playbook to be executed by this job." msgstr "このジョブで実行される Playbook を選択してください。" -#: screens/Template/shared/JobTemplateForm.jsx:301 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "このジョブで実行する Playbook が含まれるプロジェクトを選択してください。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "使用する Ansible Automation Platform サブスクリプションを選択します。" -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "{0} の選択" -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:260 -#: components/AddRole/SelectRoleStep.jsx:27 -#: 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:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "選択済み" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "選択したカテゴリー" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:233 -msgid "Send a test log message to the configured log aggregator." -msgstr "設定済みのログアグリゲーターにテストログメッセージを送信します。" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:93 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "送信者のメール" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "送信者のメール" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "9 月" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "サービスアカウント JSON ファイル" -#: screens/Inventory/shared/InventorySourceForm.jsx:53 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "このフィールドに値を設定します" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "データの保持日数を設定します。" -#: screens/Setting/SettingList.jsx:121 +#: screens/Setting/SettingList.js:117 msgid "Set preferences for data collection, logos, and logins" msgstr "データ収集、ロゴ、およびログイン情報の設定" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "ソースパスの設定:" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "インスタンスをオンラインまたはオフラインに設定します。オフラインの場合、ジョブはこのインスタンスに割り当てられません。" -#: screens/Application/shared/ApplicationForm.jsx:129 +#: screens/Application/shared/ApplicationForm.js:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "クライアントデバイスのセキュリティーレベルに応じて「公開」または「機密」に設定します。" -#: components/Search/AdvancedSearch.jsx:98 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "タイプの設定" -#: components/Search/AdvancedSearch.jsx:89 +#: components/Search/AdvancedSearch.js:298 +msgid "Set type disabled for related search field fuzzy searches" +msgstr "" + +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "タイプ選択の設定" -#: components/Search/AdvancedSearch.jsx:92 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "タイプ先行入力の設定" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "ズームを 100% に設定し、グラフを中央に配置" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "カテゴリーの設定" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "設定は工場出荷時のデフォルトと一致します。" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "名前の設定" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "設定" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "表示" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:496 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "変更の表示" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "すべてのグループの表示" -#: components/AdHocCommands/AdHocDetailsStep.jsx:201 -#: components/AdHocCommands/AdHocDetailsStep.jsx:202 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "変更の表示" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "説明の表示" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "簡易表示" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "root グループのみを表示" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "Azure AD でサインイン" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "GitHub でサインイン" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "GitHub Enterprise でサインイン" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "GitHub Enterprise 組織でサインイン" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "GitHub Enterprise チームでサインイン" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "GitHub 組織でサインイン" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "GitHub チームでサインイン" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "Google でサインイン" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "SAML でサインイン" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "SAML {samlIDP} でサインイン" -#: components/Search/Search.jsx:177 -#: components/Search/Search.jsx:178 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "簡易キー選択" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:235 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:310 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:536 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "スキップタグ" -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7028,7 +7182,7 @@ msgid "" "of tags." msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、ドキュメントを参照してください。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -7036,265 +7190,271 @@ msgid "" "documentation for details on the usage of tags." msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "スキップ済" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "Slack" -#: screens/Host/HostList/SmartInventoryButton.jsx:19 -#: screens/Host/HostList/SmartInventoryButton.jsx:38 -#: screens/Host/HostList/SmartInventoryButton.jsx:42 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "スマートインベントリー" -#: screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "スマートインベントリーは見つかりません。" -#: components/Lookup/HostFilterLookup.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "スマートホストフィルター" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "スマートインベントリー" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "前のステップのいくつかにエラーがあります" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Host/HostList/SmartInventoryButton.js:12 +msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "この認証情報およびメタデータをテストする要求で問題が発生しました。" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "問題が発生しました..." -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "並び替え" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "質問の順序の並べ替え" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:84 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "ソース" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:130 -#: components/PromptDetail/PromptProjectDetail.jsx:79 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:75 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:332 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "ソースコントロールブランチ" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" msgstr "ソースコントロールブランチ/タグ/コミット" -#: components/PromptDetail/PromptProjectDetail.jsx:83 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "ソースコントロール認証情報" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "ソースコントロール認証情報タイプ" -#: components/PromptDetail/PromptProjectDetail.jsx:80 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:151 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "ソースコントロールの Refspec" -#: components/PromptDetail/PromptProjectDetail.jsx:75 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:146 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 +msgid "Source Control Revision" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "ソースコントロールのタイプ" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "ソースコントロールの URL" -#: components/JobList/JobList.jsx:180 -#: components/JobList/JobListItem.jsx:33 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "ソースコントロールの更新" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "発信元の電話番号" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:168 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "ソース変数" -#: components/JobList/JobListItem.jsx:170 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "ソースワークフローのジョブ" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "ソースコントロールのブランチ" -#: screens/Inventory/shared/InventorySourceForm.jsx:160 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "ソース詳細" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "発信元の電話番号" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:249 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "ソース変数" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "プロジェクトから取得" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "ソース" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." msgstr "JSON 形式で HTTP ヘッダーを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." msgstr "通知の色を指定します。使用できる色は、16 進数の色コード (例: #3af または #789abc) です。" -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "トークンのアクセスのスコープを指定" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "このノードを実行する条件を指定" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "標準エラー" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "標準出力" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "標準エラータブ" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "標準出力タブ" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "開始" -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:83 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "開始時間" -#: components/Schedule/shared/ScheduleForm.jsx:120 -msgid "Start date/time" -msgstr "開始日時" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "開始メッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:388 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "開始メッセージのボディー" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "同期プロセスの開始" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "同期ソースの開始" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "開始" -#: components/JobList/JobList.jsx:193 -#: components/JobList/JobList.jsx:214 -#: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "ステータス" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "送信" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7304,187 +7464,192 @@ msgid "" "flag to git submodule update." msgstr "サブモジュールは、マスターブランチ (または .gitmodules で指定された他のブランチ) の最新のコミットを追跡します。いいえの場合、サブモジュールはメインプロジェクトで指定されたリビジョンで保持されます。これは、git submodule update に --remote フラグを指定するのと同じです。" -#: screens/Setting/SettingList.jsx:131 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "サブスクリプション" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "サブスクリプションの詳細" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "Subscription Management" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "サブスクリプションマニュフェスト" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "サブスクリプション選択モーダル" -#: screens/Setting/SettingList.jsx:136 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "サブスクリプション設定" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "サブスクリプションタイプ" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "サブスクリプションテーブル" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "Subversion" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "成功" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:397 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "成功メッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:406 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "成功メッセージボディー" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "成功" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "成功ジョブ" -#: screens/Project/ProjectList/ProjectListItem.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "クリップボードへのコピーに成功しました!" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "日" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "日曜" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:168 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "Survey" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "Survey 一覧" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "Survey プレビュー" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "Survey の切り替え" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "Survey プレビューモーダル" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "Survey の質問" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:111 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "同期" -#: screens/Project/ProjectList/ProjectListItem.jsx:187 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "プロジェクトの同期" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "すべてを同期" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "すべてのソースの同期" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "同期エラー" -#: screens/Project/ProjectList/ProjectListItem.jsx:160 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "リビジョンの同期" -#: screens/Setting/SettingList.jsx:101 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Project/ProjectList/ProjectListItem.js:120 +msgid "Syncing" +msgstr "" + +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "システム" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 msgid "System Administrator" msgstr "システム管理者" -#: screens/User/UserDetail/UserDetail.jsx:44 -#: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:34 +#: screens/User/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "システム監査者" -#: screens/Job/JobOutput/JobOutput.jsx:702 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "システム警告" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "システム管理者は、すべてのリソースに無制限にアクセスできます。" -#: screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "TACACS+" -#: screens/Setting/SettingList.jsx:84 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "TACACS+ 設定" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "タブ" -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7493,7 +7658,7 @@ msgid "" "the usage of tags." msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、ドキュメントを参照してください。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -7501,198 +7666,196 @@ msgid "" "documentation for details on the usage of tags." msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:132 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "アノテーションのタグ" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "アノテーションのタグ (オプション)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:175 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "ターゲット URL" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "タスク" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "タスク数" -#: screens/Job/JobOutput/JobOutput.jsx:693 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "タスクの開始" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "タスク" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "チーム" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "チームロール" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "チームが見つかりません。" -#: components/AddRole/AddResourceRole.jsx:208 -#: components/AddRole/AddResourceRole.jsx:209 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: 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: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:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 -#: util/getRelatedResourceDeleteDetails.js:180 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 +#: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "チーム" -#: screens/Template/Template.jsx:184 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "更新が見つかりません。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -msgid "Template type" -msgstr "テンプレートタイプ" - -#: components/TemplateList/TemplateList.jsx:182 -#: components/TemplateList/TemplateList.jsx:239 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 -#: screens/Template/Templates.jsx:16 -#: util/getRelatedResourceDeleteDetails.js:224 -#: util/getRelatedResourceDeleteDetails.js:281 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 +#: util/getRelatedResourceDeleteDetails.js:217 +#: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "テンプレート" -#: 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 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "テスト" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "外部認証情報のテスト" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "テスト通知" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -msgid "Test logging" -msgstr "ロギングのテスト" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "テスト通知" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "テストに成功" -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "テキスト" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "テキストエリア" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "Textarea" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "値が見つかりませんでした。有効な値を入力または選択してください。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr " " -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "ジョブテンプレート用に構成されていない場合に使用される実行環境。" -#: screens/Application/shared/ApplicationForm.jsx:87 +#: screens/Application/shared/ApplicationForm.js:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "ユーザーがこのアプリケーションのトークンを取得するために使用する必要のある付与タイプです。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." msgstr "メール通知が、ホストへの到達を試行するのをやめてタイムアウトするまでの時間 (秒単位)。範囲は 1 から 120 秒です。" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" "timeout." msgstr "ジョブが取り消される前の実行時間 (秒数)。デフォルト値は 0 で、ジョブのタイムアウトがありません。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." msgstr "Grafana サーバーのベース URL。/api/annotations エンドポイントは、ベース Grafana URL に自動的に追加されます。" -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "この組織内のジョブに使用される実行環境。これは、実行環境がプロジェクト、ジョブテンプレート、またはワークフローレベルで明示的に割り当てられていない場合にフォールバックとして使用されます。" -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "このプロジェクトを使用するジョブで使用される実行環境。これは、実行環境がジョブテンプレートまたはワークフローレベルで明示的に割り当てられていない場合のフォールバックとして使用されます。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 +msgid "" +"The execution environment that will be used when launching\n" +"this job template. The resolved execution environment can be overridden by\n" +"explicitly assigning a different one to this job template." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." msgstr "最初は全参照を取得します。2 番目は Github のプル要求の 62 番を取得します。この例では、ブランチは \"pull/62/head\" である必要があります。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 msgid "The full image location, including the container registry, image name, and version tag." msgstr "コンテナーレジストリー、イメージ名、およびバージョンタグを含む完全なイメージの場所。" -#: screens/Organization/shared/OrganizationForm.jsx:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "この組織で管理可能な最大ホスト数。デフォルト値は 0 で、管理可能な数に制限がありません。詳細は、Ansible ドキュメントを参照してください。" -#: screens/Template/shared/JobTemplateForm.jsx:428 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -7701,295 +7864,300 @@ msgid "" "with a change to" msgstr "Playbook の実行中に使用する並列または同時プロセスの数。値が空白または 1 未満の場合は、Ansible のデフォルト値 (通常は 5) を使用します。フォークのデフォルトの数は、以下を変更して上書きできます。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:188 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "Playbook の実行中に使用する並列または同時プロセスの数。いずれの値も入力しないと、Ansible 設定ファイルのデフォルト値が使用されます。より多くの情報を確認できます。" -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "要求したページが見つかりませんでした。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:168 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "インベントリー内のホストをターゲットにするために使用されるパターン。フィールドを空白のままにすると、all、および * はすべて、インベントリー内のすべてのホストを対象とします。Ansible のホストパターンに関する詳細情報を確認できます。" -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/Project/ProjectList/ProjectListItem.js:118 +msgid "The project is currently syncing and the revision will be available after the sync is complete." +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 +msgid "The project must be synced before a revision is available." +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:128 +msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "このノードに関連付けられているリソースは削除されました。" -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." msgstr "推奨される変数名の形式は小文字のみを使用し、それらをアンダースコアで区切ります (foo_bar、user_id、host_name など)。スペースを含む変数名は許可されません。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 -msgid "The tower instance group cannot be deleted." -msgstr "Tower インスタンスグループは削除できません。" - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" "assigned to other projects. Create a new directory there and make\n" "sure the playbook files can be read by the \"awx\" system user,\n" -"or have {brandName} directly retrieve your playbooks from\n" +"or have {0} directly retrieve your playbooks from\n" "source control using the Source Control Type option above." -msgstr "{project_base_dir} に利用可能な Playbook ディレクトリーはありません。そのディレクトリーが空であるか、すべてのコンテンツがすでに他のプロジェクトに割り当てられています。そこに新しいディレクトリーを作成し、「awx」システムユーザーが Playbook ファイルを読み取れるか、{brandName} が、上記のソースコントロールタイプオプションを使用して、ソースコントロールから Playbook を直接取得できるようにしてください。" +msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:31 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "少なくとも 1 つの入力に値が必要です" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "ログインに問題がありました。もう一度やり直してください。" -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "このコンテンツの読み込み中にエラーが発生しました。ページを再読み込みしてください。" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "ファイルの解析中にエラーが発生しました。ファイルのフォーマットを確認して、再試行してください。" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "ワークフローの保存中にエラーが発生しました。" -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -msgid "There was an error testing the log aggregator." -msgstr "ログアグリゲーターのテスト中にエラーが発生しました。" +#: components/AdHocCommands/AdHocDetailsStep.js:68 +msgid "These are the modules that {0} supports running commands against." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -msgid "These are the modules that {brandName} supports running commands against." -msgstr "これらは {brandName} がコマンドの実行をサポートするモジュールです。" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:146 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "これらは、サポートされているコマンド実行の標準の詳細レベルです。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "これらの引数は、指定されたモジュールで使用されます。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:118 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "これらの引数は、指定されたモジュールで使用されます。クリックすると {0} の情報を表示できます。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "第 3" -#: screens/Template/shared/JobTemplateForm.jsx:153 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "このプロジェクトは更新する必要があります" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "このアクションにより、以下が削除されます。" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "このアクションにより、このユーザーのすべてのロールと選択したチームの関連付けが解除されます。" -#: screens/Team/TeamRoles/TeamRolesList.jsx:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "このアクションにより、{0} から次のロールの関連付けが解除されます:" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "このアクションにより、以下の関連付けが解除されます。" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "このコンテナーグループは、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:282 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "この認証情報は、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "この認証タイプは、現在一部の認証情報で使用されているため、削除できません" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." msgstr "このデータは、ソフトウェアの今後のリリースを強化し、Insights for Ansible Automation Platform を提供するために使用されます。" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" "streamline customer experience and success." msgstr "このデータは、Tower ソフトウェアの今後のリリースを強化し、顧客へのサービスを効率化し、成功に導くサポートをします。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "この実行環境は、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "有効な変数が設定されていない限り、このフィールドは無視されます。有効な変数がこの値と一致すると、インポート時にこのホストが有効になります。" -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "このフィールドは空白ではありません" -#: util/validators.jsx:100 +#: util/validators.js:121 msgid "This field must be a number" msgstr "このフィールドは数字でなければなりません" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 msgid "This field must be a number and have a value between {0} and {1}" msgstr "このフィールドは、{0} から {1} の間の値である必要があります" -#: util/validators.jsx:40 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "このフィールドは、{min} から {max} の間の値である必要があります" -#: util/validators.jsx:140 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "このフィールドは正規表現である必要があります" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: util/validators.jsx:84 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "このフィールドは整数でなければなりません。" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "このフィールドは、{0} 文字以上にする必要があります" -#: util/validators.jsx:31 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "このフィールドは、{min} 文字以上にする必要があります" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "このフィールドは 0 より大きくなければなりません" -#: 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 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "このフィールドは空白であってはなりません" -#: util/validators.jsx:74 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "このフィールドにはスペースを含めることはできません" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "このフィールドは、{0} 文字内にする必要があります" -#: util/validators.jsx:22 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "このフィールドは、{max} 文字内にする必要があります" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "このインスタンスグループは、現在他のリソースで使用されています。削除してもよろしいですか?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -msgstr "このインベントリーが、このワークフロー ({0}) 内の、インベントリーをプロンプトするすべてのジョブテンプレートノードに適用されます。" +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "このインベントリーは、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "このインベントリーソースは、現在それに依存している他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "クライアントシークレットが表示されるのはこれだけです。" -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "この時だけ唯一、トークンの値と、関連する更新トークンの値が表示されます。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "このジョブテンプレートは、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:166 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "この組織は、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:225 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "このプロジェクトは、現在他のリソースで使用されています。削除してもよろしいですか?" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "このプロジェクトは現在同期中で、同期プロセスが完了するまでクリックできません" -#: components/Schedule/ScheduleList/ScheduleList.jsx:122 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "このスケジュールにはインベントリーがありません" -#: components/Schedule/ScheduleList/ScheduleList.jsx:147 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "このスケジュールには、必要な Survey 値がありません" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:64 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "このステップにはエラーが含まれています" -#: screens/User/shared/UserForm.jsx:146 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "この値は、以前に入力されたパスワードと一致しません。パスワードを確認してください。" -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" msgstr "これにより、このページのすべての設定値が出荷時の設定に戻ります。続行してもよいですか?" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "このワークフローには、ノードが構成されていません。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "このワークフロージョブテンプレートは、現在他のリソースによって使用されています。削除してもよろしいですか?" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "木" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "木曜" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "時間" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -7999,7 +8167,7 @@ msgid "" "performed." msgstr "プロジェクトが最新であることを判別するための時間 (秒単位) です。ジョブ実行およびコールバック時に、タスクシステムは最新のプロジェクト更新のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合には、最新とは見なされず、新規のプロジェクト更新が実行されます。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -8008,950 +8176,965 @@ msgid "" "inventory sync will be performed." msgstr "インベントリーの同期が最新の状態であることを判別するために使用される時間 (秒単位) です。ジョブの実行およびコールバック時に、タスクシステムは最新の同期のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合は最新とは見なされず、インベントリーの同期が新たに実行されます。" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "タイムアウト" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:103 -#: 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:489 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "タイムアウト" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "タイムアウト (分)" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "タイムアウトの秒" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "凡例の切り替え" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "パスワードの切り替え" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "ツールの切り替え" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "イベント行の展開/折りたたみを切り替え" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "ホストの切り替え" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "インスタンスの切り替え" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "凡例の切り替え" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "通知承認の切り替え" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "通知失敗の切り替え" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "通知開始の切り替え" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "通知成功の切り替え" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "スケジュールの切り替え" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "ツールの切り替え" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "トークン" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "トークン情報" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "ジョブが見つかりません。" -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -msgid "Token type" -msgstr "トークンタイプ" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:106 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "トークン" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "ツール" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "トップページネーション" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "ジョブの合計" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "ノードの合計" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:174 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "ジョブの合計" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "サブモジュールを追跡する" -#: components/PromptDetail/PromptProjectDetail.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:75 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "ブランチでのサブモジュールの最新のコミットを追跡する" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "トライアル" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "True" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "火" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "火曜" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:215 -#: components/JobList/JobListItem.jsx:82 -#: 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:162 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:196 -#: components/TemplateList/TemplateList.jsx:221 -#: components/TemplateList/TemplateListItem.jsx:152 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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: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:241 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: 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: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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "タイプ" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "タイプの詳細" -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -msgid "Type answer then click checkbox on right to select answer as default." -msgstr "回答を入力し、右側のチェックボックスをクリックして、回答をデフォルトとして選択します。" +#: screens/Template/Survey/MultipleChoiceField.js:61 +msgid "" +"Type answer then click checkbox on right to select answer as\n" +"default." +msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:111 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "" + +#: components/HostForm/HostForm.js:62 +msgid "Unable to change inventory on a host" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "利用不可" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "元に戻す" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Unfollow" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "制限なし" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "到達不能" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "到達不能なホスト数" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "到達不能なホスト" -#: util/dates.jsx:89 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "認識されない日付の文字列" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "保存されていない変更モーダル" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "起動時のリビジョン更新" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -msgid "Update on Launch" -msgstr "起動時の更新" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -msgid "Update on Project Update" -msgstr "プロジェクト更新時の更新" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:160 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "起動時の更新" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:170 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "プロジェクト更新時の更新" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "オプションの更新" -#: screens/Setting/SettingList.jsx:91 -msgid "Update settings pertaining to Jobs within {brandName}" -msgstr "{brandName} 内のジョブを含む設定の更新" +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 +msgid "Update revision on job launch" +msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Setting/SettingList.js:87 +msgid "Update settings pertaining to Jobs within {0}" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "Webhook キーの更新" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "更新中" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr ".zip ファイルをアップロードする" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "サブスクリプションを含む Red Hat Subscription Manifest をアップロードします。サブスクリプションマニフェストを生成するには、Red Hat カスタマーポータルの <0>サブスクリプション割り当て にアクセスします。" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -msgid "Use Fact Storage" -msgstr "ファクトストレージの使用" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "SSL の使用" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "TLS の使用" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" msgstr "カスタムメッセージを使用して、ジョブの開始時、成功時、または失敗時に送信する通知内容を変更します。波括弧を使用してジョブに関する情報にアクセスします:" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:107 +#: screens/InstanceGroup/Instances/InstanceList.js:215 +msgid "Used Capacity" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "使用済み容量" -#: components/AppContainer/PageHeaderToolbar.jsx:130 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "ユーザー" -#: components/AppContainer/PageHeaderToolbar.jsx:158 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "ユーザーの詳細" -#: screens/Setting/SettingList.jsx:120 -#: screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "ユーザーインターフェース" -#: screens/Setting/SettingList.jsx:125 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "ユーザーインターフェースの設定" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "ユーザーロール" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:129 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "ユーザータイプ" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "ユーザーアナリティクス" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "ユーザーと Insights のアナリティクス" -#: components/AppContainer/PageHeaderToolbar.jsx:151 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "エラーの詳細" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "ジョブが見つかりません。" -#: screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "ユーザートークン" -#: components/AddRole/AddResourceRole.jsx:124 -#: components/AddRole/AddResourceRole.jsx:139 -#: components/ResourceAccessList/ResourceAccessList.jsx:127 -#: components/ResourceAccessList/ResourceAccessList.jsx:180 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:78 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:180 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:230 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 -#: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:122 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:63 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "ユーザー名" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "ユーザー名 / パスワード" -#: components/AddRole/AddResourceRole.jsx:198 -#: components/AddRole/AddResourceRole.jsx:199 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:117 -#: screens/User/UserList/UserList.jsx:157 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "ユーザー" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:99 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:221 -#: screens/Template/shared/JobTemplateForm.jsx:412 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "変数" -#: screens/Job/JobOutput/JobOutput.jsx:694 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "変数のプロモート" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "Vault パスワード" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "Vault パスワード | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:699 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "詳細" -#: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:100 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:462 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "詳細" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "バージョン" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -msgid "View Activity Stream settings" -msgstr "アクティビティーストリーム設定の表示" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "Azure AD 設定の表示" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "認証情報の詳細の表示" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "詳細の表示" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "GitHub 設定の表示" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "Google OAuth 2.0 設定の表示" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "ホストの詳細の表示" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:169 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "インベントリー詳細の表示" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "インベントリーグループの表示" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "インベントリーホストの詳細の表示" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "JSON のサンプルについては、<0>www.json.org を参照してください。" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "ジョブの詳細の表示" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "ジョブ設定の表示" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "LDAP 設定の表示" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "ロギング設定の表示" -#: screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 +msgid "View Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "その他のシステム設定の表示" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "組織の詳細の表示" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "プロジェクトの詳細の表示" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "RADIUS 設定の表示" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "SAML 設定の表示" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "スケジュールの表示" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "設定の表示" -#: screens/Template/Template.jsx:168 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "Survey の表示" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "TACACS+ 設定の表示" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "チームの詳細の表示" -#: screens/Template/Template.jsx:265 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "テンプレートの詳細の表示" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "トークンの表示" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "ユーザーの詳細の表示" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "ユーザーインターフェース設定の表示" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "ワークフロー承認の詳細の表示" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "<0>docs.ansible.com での YAML サンプルの表示" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "アクティビティーストリームの表示" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "すべての認証情報を表示します。" -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "すべてのホストを表示します。" -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:97 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "すべてのインベントリーを表示します。" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "すべてのインベントリーホストを表示します。" -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "すべてのジョブを表示" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "すべてのジョブを表示します。" -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "すべての通知テンプレートを表示します。" -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "すべての組織を表示します。" -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "すべてのプロジェクトを表示します。" -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "すべてのチームを表示します。" -#: screens/Template/Template.jsx:185 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "すべてのテンプレートを表示します。" -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "すべてのユーザーを表示します。" -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "すべてのワークフロー承認を表示します。" -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "すべてのアプリケーションを表示します。" -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "すべての認証情報タイプの表示" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "すべての実行環境の表示" -#: screens/InstanceGroup/ContainerGroup.jsx:83 -#: screens/InstanceGroup/InstanceGroup.jsx:89 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "すべてのインスタンスグループの表示" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "すべての管理ジョブの表示" -#: screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "すべての設定の表示" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "すべてのトークンを表示します。" -#: screens/Setting/SettingList.jsx:132 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "サブスクリプション情報の表示および編集" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "イベント詳細の表示" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "インベントリソース詳細の表示" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "ジョブ {0} の表示" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "ノードの詳細の表示" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 msgid "View smart inventory host details" msgstr "スマートインベントリーホストの詳細の表示" -#: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "ビュー" -#: components/TemplateList/TemplateListItem.jsx:157 -#: components/TemplateList/TemplateListItem.jsx:163 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "ビジュアライザー" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "警告:" -#: components/JobList/JobList.jsx:198 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "待機中" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:701 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "警告" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "警告: 変更が保存されていません" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "このアカウントに関連するライセンスを見つけることができませんでした。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "このアカウントに関連するサブスクリプションを見つけることができませんでした。" -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:249 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "Webhook の認証情報" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "Webhook の認証情報" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "Webhook キー" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "Webhook サービス" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "Webhook URL" -#: screens/Template/shared/JobTemplateForm.jsx:655 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "Webhook の詳細" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Webhook サービスは、この URL への POST 要求を作成してこのワークフロージョブテンプレートでジョブを起動できます。" -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "Webhook サービスは、これを共有シークレットとして使用できます。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 +msgid "Webhooks" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "水" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "水曜" -#: components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "週" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "平日" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "週末" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." msgstr "Red Hat Ansible Automation Platform へようこそ! サブスクリプションをアクティブにするには、以下の手順を実行してください。" -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "{brandName} へようこそ!" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:150 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" "external source." msgstr "チェックが付けられていない場合は、ローカル変数と外部ソースにあるものを組み合わせるマージが実行されます。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." msgstr "チェックが付けられていない場合、外部ソースにないローカルの子ホストおよびグループは、インベントリーの更新プロセスによって処理されないままになります。" -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "ワークフロー" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "ワークフローの承認" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "ワークフローの承認が見つかりません。" -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "ワークフローの承認" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "ワークフロージョブ" -#: components/JobList/JobListItem.jsx:158 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 -#: util/getRelatedResourceDeleteDetails.js:111 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 +#: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "ワークフロージョブテンプレート" -#: util/getRelatedResourceDeleteDetails.js:121 -#: util/getRelatedResourceDeleteDetails.js:163 -#: util/getRelatedResourceDeleteDetails.js:266 +#: util/getRelatedResourceDeleteDetails.js:114 +#: util/getRelatedResourceDeleteDetails.js:156 +#: util/getRelatedResourceDeleteDetails.js:259 msgid "Workflow Job Template Nodes" msgstr "ワークフロージョブテンプレートのノード" -#: util/getRelatedResourceDeleteDetails.js:146 +#: util/getRelatedResourceDeleteDetails.js:139 msgid "Workflow Job Templates" msgstr "ワークフロージョブテンプレート" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "ワークフローのリンク" -#: components/TemplateList/TemplateList.jsx:200 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "ワークフローテンプレート" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:433 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "ワークフロー承認メッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:445 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "ワークフロー承認メッセージのボディー" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:457 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "ワークフロー拒否メッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:469 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "ワークフロー拒否メッセージのボディー" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "ワークフロードキュメント" @@ -8959,493 +9142,448 @@ msgstr "ワークフロードキュメント" msgid "Workflow job templates" msgstr "ワークフロージョブテンプレート" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "ワークフローリンクモーダル" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "ワークフローノード表示モーダル" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:481 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "ワークフロー保留メッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:493 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "ワークフロー保留メッセージのボディー" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:505 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "ワークフローのタイムアウトメッセージ" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "ワークフローのタイムアウトメッセージのボディー" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "書き込み" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "YAML:" -#: components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "年" -#: components/Search/Search.jsx:256 +#: components/Search/Search.js:259 msgid "Yes" msgstr "可" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToApprove}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "次のワークフロー承認に基づいて行動することはできません: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:156 +#: components/Lookup/MultiCredentialsLookup.js: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:97 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "次のグループを削除する権限がありません: {itemsUnableToDelete}" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "{pluralizedItemName} を削除する権限がありません: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 -msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -msgstr "{pluralizedItemName} を削除する権限がありません: {itemsUnableToDelete}。" - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "以下の関連付けを解除する権限がありません: {itemsUnableToDisassociate}" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" msgstr "メッセージにはいくつかの可能な変数を適用できます。詳細の参照: " -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "セッションの期限が切れました。中断したところから続行するには、ログインしてください。" -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "セッションの有効期限が近づいています" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "ズームイン" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "ズームアウト" -#: screens/Template/shared/JobTemplateForm.jsx:753 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js:152 msgid "a new webhook key will be generated on save." msgstr "新規 Webhook キーは保存時に生成されます。" -#: screens/Template/shared/JobTemplateForm.jsx:750 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js:142 msgid "a new webhook url will be generated on save." msgstr "新規 Webhook URL は保存時に生成されます。" -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 +#: screens/Template/Survey/SurveyListItem.js:157 msgid "actions" msgstr "アクション" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "そして、起動時のリビジョン更新をクリックします" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "承認" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "ブランドロゴ" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "削除のキャンセル" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -msgid "capacity adjustment" -msgstr "容量調整" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:240 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "command" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "削除の確認" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "関連付けの解除の確認" -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -msgid "copy to clipboard disabled" -msgstr "クリップボードへのコピーが無効" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "削除エラー" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "拒否" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "関連付けの解除" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "ドキュメント" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: 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/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "編集" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "暗号化" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -msgid "expiration" -msgstr "有効期限" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "(詳細情報)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "(詳細情報)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:174 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "ここ" -#: components/AdHocCommands/AdHocDetailsStep.jsx:125 -#: components/AdHocCommands/AdHocDetailsStep.jsx:194 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "ここ" -#: components/Lookup/HostFilterLookup.jsx:337 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "hosts" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -msgid "instance counts" -msgstr "インスタンス数" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -msgid "instance group used capacity" -msgstr "インスタンスグループの使用容量" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -msgid "instance host name" -msgstr "インスタンスのホスト名" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -msgid "instance type" -msgstr "インスタンスタイプ" - -#: components/Lookup/HostListItem.jsx:30 -msgid "inventory" -msgstr "inventory" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "項目" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "LDAP ユーザー" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "ログインタイプ" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "分" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "下に移動" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "上に移動" -#: components/Lookup/HostListItem.jsx:23 -msgid "name" -msgstr "name" - -#: screens/Template/Survey/MultipleChoiceField.jsx:73 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "新しい選択" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "/" -#: components/AdHocCommands/AdHocDetailsStep.jsx:238 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "以下へのオプション:" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "ページ" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "ページ" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "ページ別" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "ジョブの再起動" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -msgid "scope" -msgstr "範囲" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "秒" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "秒" -#: components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "モジュールの選択" -#: components/AdHocCommands/AdHocDetailsStep.jsx:135 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "冗長性の選択" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "ソーシャルログイン" -#: screens/Template/shared/JobTemplateForm.jsx:344 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "ソースコントロールのブランチ" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "システム" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -msgid "team name" -msgstr "チームの名前" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "タイムアウト" -#: components/AdHocCommands/AdHocDetailsStep.jsx:218 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "変更の切り替え" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -msgid "token name" -msgstr "トークン名" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "更新" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "ワークフロージョブテンプレートの Wbhook キー" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "{0, plural, one {以下のグループを削除してもよろしいですか?} other {以下のグループを削除してもよろしいですか?}}" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "{0, plural, one {グループを削除しますか?} other {グループを削除しますか?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 +msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.js:236 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 {インベントリーは最終的な削除が処理されるまで保留中のステータスになります。} other {インベントリーは最終的な削除が処理されるまで保留中のステータスになります。}}" -#: components/JobList/JobList.jsx:242 +#: components/JobList/JobList.js:254 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 {選択したジョブは、不十分な権限または実行中のジョブステータスのために削除できません} other {選択したジョブは、不十分な権限または実行中のジョブステータスのために削除できません}}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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 {この承認は、権限が不十分であるか、ジョブステータスが保留中であるため、削除できません} other {この承認は、権限が不十分であるか、ジョブステータスが保留中であるため、削除できません}}" -#: screens/Credential/CredentialList/CredentialList.jsx:181 +#: screens/Credential/CredentialList/CredentialList.js:178 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 {この認証情報は、現在他のリソースで使用されています。削除してもよろしいですか?} other {これらの認証情報を削除すると、その認証情報に依存している他のリソースに影響を与える可能性があります。削除してもよろしいですか?}}" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:170 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 {この認証情報タイプは、現在いくつかの認証情報で使用されているため、削除できません。} other {認証で使用されている認証タイプは削除できません。削除してもよろしいですか?}}" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:187 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 {この実行環境は、現在他のリソースによって使用されています。削除してもよろしいですか?} other {これらの実行環境は、それらに依存する他のリソースによって使用されている可能性があります。削除してもよろしいですか?}}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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 {このインスタンスグループは、現在他のリソースで使用されています。削除してもよろしいですか?} other {これらのインスタンスグループを削除すると、そのインスタンスグループに依存している他のリソースに影響を与える可能性があります。削除してもよろしいですか?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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 {このインベントリーは、現在いくつかのテンプレートで使用されています。削除してもよろしいですか?} other {これらのインベントリーを削除すると、そのインベントリーに依存しているいくつかのテンプレートに影響を与える可能性があります。削除してもよろしいですか?}}" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.js:186 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 {このインベントリーソースは、現在、そのインベントリーソースに依存している他のリソースで使用されています。削除してもよろしいですか?} other {これらのインベントリーソースを削除すると、そのインベントリーソースに依存している他のリソースに影響を与える可能性があります。削除してもよろしいですか}}" -#: screens/Organization/OrganizationList/OrganizationList.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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 {この組織は、現在他のリソースで使用されています。削除してもよろしいですか?} other {これらの組織を削除すると、その組織に依存している他のリソースに影響を与える可能性があります。削除してもよろしいですか?}}" -#: screens/Project/ProjectList/ProjectList.jsx:198 +#: screens/Project/ProjectList/ProjectList.js:241 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 {このプロジェクトは、現在他のリソースで使用されています。削除してもよろしいですか?} other {これらのプロジェクトを削除すると、そのプロジェクトに依存している他のリソースに影響を与える可能性があります。削除してもよろしいですか?}}" -#: components/TemplateList/TemplateList.jsx:242 +#: components/TemplateList/TemplateList.js:251 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 {このテンプレートは、現在いくつかのワークフローノードで使用されています。削除してもよろしいですか?} other {これらのテンプレートを削除すると、そのテンプレートに依存しているいくつかのワークフローノードに影響を与える可能性があります。削除してもよろしいですか?}}" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {次のジョブは実行していないため、取り消すことができません:} other {次のジョブは実行していないため、取り消すことができません:}}" -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "{0, plural, one {次のジョブを取り消す権限はありません:} other {次のジョブを取り消す権限はありません:}}" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -msgid "{0}" -msgstr "{0}" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "{0} (削除済)" -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "{0} 以上" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "{0} ソースが同期に失敗しました。" -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -msgid "{0}: {1}" -msgstr "{0}: {1}" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "{brandName} ロゴ" -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "<0>{username} による {dateStr}" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:187 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "{forks, plural, one {# フォーク} other {# フォーク}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{intervalValue, plural, one {日} other {日}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{intervalValue, plural, one {時間} other {時間}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{intervalValue, plural, one {分} other {分}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{intervalValue, plural, one {月} other {月}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{intervalValue, plural, one {週} other {週}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{intervalValue, plural, one {年} other {年}}" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/Schedule/shared/DateTimePicker.js:49 +msgid "{label} date" +msgstr "" + +#: components/Schedule/shared/DateTimePicker.js:57 +msgid "{label} time" +msgstr "" + +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "{minutes} 分 {seconds} 分" -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "{numJobsToCancel, plural, one {ジョブの取り消し} other {ジョブの取り消し}}" -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {このアクションは、次のジョブを取り消します:} other {このアクションは、次のジョブを取り消します:}}" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/DetailList/NumberSinceDetail.js:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr "{sessionCountdown, plural, one {非アクティブのため、# 秒でログアウトします} other {非アクティブのため、# 秒でログアウトします}}" - diff --git a/awx/ui_next/src/locales/nl/messages.po b/awx/ui_next/src/locales/nl/messages.po index 48b828a8b7..baaf73977a 100644 --- a/awx/ui_next/src/locales/nl/messages.po +++ b/awx/ui_next/src/locales/nl/messages.po @@ -2,370 +2,372 @@ msgid "" msgstr "" "POT-Creation-Date: 2021-06-08 18:28+0000\n" "Mime-Version: 1.0\n" -"Language: nl \n" +"Language: nl\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "(Beperkt tot de eerste 10)" -#: components/TemplateList/TemplateListItem.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "(Melding bij opstarten)" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -msgid "- Enable Concurrent Jobs" -msgstr "- Gelijktijdige taken inschakelen" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -msgid "- Enable Webhooks" -msgstr "- Webhooks inschakelen" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "/ (projectroot)" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:211 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "0 (Normaal)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:102 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "0 (Waarschuwing)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:103 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "1 (Info)" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:212 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "1 (Uitgebreid)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:104 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "2 (Foutopsporing)" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:213 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "2 (Meer verbaal)" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "3 (Foutopsporing)" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "4 (Foutopsporing verbinding)" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "5 (WinRM-foutopsporing)" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" "the branch field not otherwise available." msgstr "Een refspec om op te halen (doorgegeven aan de Ansible git-module). Deze parameter maakt toegang tot referenties mogelijk via het vertakkingsveld dat anders niet beschikbaar is." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "Een abonnementsmanifest is een export van een Red Hat-abonnement. Om een abonnementsmanifest te genereren, gaat u naar <0>access.redhat.com. Zie voor meer informatie de <1>Gebruikershandleiding." -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "ALLE" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:211 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "Service-/integratiesleutel API" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "API-token" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "Service-/integratiesleutel API" -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "Over" -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:70 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:145 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "Toegang" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "Toegangstoken vervallen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:275 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "SID account" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "Accounttoken" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "Actie" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:164 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:257 -#: screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 -#: screens/Credential/CredentialList/CredentialList.jsx:149 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:165 -#: screens/Host/HostList/HostListItem.jsx:42 -#: 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:148 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: 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:223 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:172 -#: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:151 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:168 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "Acties" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:83 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 -#: components/TemplateList/TemplateListItem.jsx:233 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "Activiteit" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:44 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "Activiteitenlogboek" -#: screens/Setting/SettingList.jsx:110 -msgid "Activity Stream settings" -msgstr "Instellingen activiteitenlogboek" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "Keuzeschakelaar type activiteitenlogboek" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "Actor" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "Toevoegen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "Link toevoegen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "Knooppunt toevoegen" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "Vraag toevoegen" -#: components/AddRole/AddResourceRole.jsx:184 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "Rollen toevoegen" -#: components/AddRole/AddResourceRole.jsx:181 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "Teamrollen toevoegen" -#: components/AddRole/AddResourceRole.jsx:178 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "Gebruikersrollen toevoegen" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "Een nieuw knooppunt toevoegen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 msgid "Add a new node between these two nodes" msgstr "Nieuw knooppunt toevoegen tussen deze twee knooppunten" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "Containergroep toevoegen" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "Bestaande groep toevoegen" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "Bestaande host toevoegen" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "Instantiegroep toevoegen" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "Inventaris toevoegen" -#: components/TemplateList/TemplateList.jsx:133 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "Taaksjabloon toevoegen" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "Nieuwe groep toevoegen" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "Nieuwe host toevoegen" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "Brontype toevoegen" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "Smart-inventaris toevoegen" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "Teammachtigingen toevoegen" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "Gebruikersmachtigingen toevoegen" -#: components/TemplateList/TemplateList.jsx:134 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "Workflowsjabloon toevoegen" -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "Beheer" -#: components/DataListToolbar/DataListToolbar.jsx:85 -#: screens/Job/JobOutput/JobOutput.jsx:706 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "Geavanceerd" -#: components/Search/AdvancedSearch.jsx:282 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "Documentatie over geavanceerd zoeken" -#: components/Search/AdvancedSearch.jsx:264 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "Geavanceerde invoer zoekwaarden" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:172 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -373,382 +375,369 @@ msgid "" "like the Ansible inventory .ini file format." msgstr "Na iedere projectupdate waarbij de SCM-revisie verandert, dient het inventaris vernieuwd te worden vanuit de geselecteerde bron voordat de opdrachten die bij de taak horen uitgevoerd worden. Dit is bedoeld voor statische content, zoals .ini, het inventarisbestandsformaat van Ansible." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "Na aantal voorvallen" -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "Waarschuwingsmodus" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "Alle" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "Alle taaktypen" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "Alle taken" -#: components/PromptDetail/PromptProjectDetail.jsx:48 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "Overschrijven van vertakking toelaten" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -msgid "Allow Provisioning Callbacks" -msgstr "Provisioning terugkoppelingen toestaan" +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 +msgid "Allow branch override" +msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "Wijzigen van de broncontrolevertakking of de revisie toelaten in een taaksjabloon die gebruik maakt van dit project." -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "Lijst met toegestane URI's, door spaties gescheiden" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "Altijd" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "Amazon EC2" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "Er is een fout opgetreden" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "Er moet een inventaris worden gekozen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "Ansible Tower" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "Documentatie Ansible Tower." -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "Antwoordtype" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "Antwoord naam variabele" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "Iedere" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "Toepassing" -#: screens/User/Users.jsx:36 -msgid "Application Name" -msgstr "Toepassingsnaam" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -msgid "Application access token" -msgstr "Toegangstoken voor toepassing" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "Toepassingsinformatie" -#: screens/User/UserTokenList/UserTokenList.jsx:111 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "Toepassingsnaam" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "Toepassing niet gevonden." -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 -#: util/getRelatedResourceDeleteDetails.js:215 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 +#: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "Toepassingen" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "Toepassingen en tokens" -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "Goedkeuring" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "Goedkeuring" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "Goedgekeurd" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "Goedgekeurd - {0}. Zie het activiteitenlogboek voor meer informatie." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "Goedgekeurd door {0} - {1}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "April" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "Weet u zeker dat u deze taak wilt annuleren?" -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "Weet u zeker dat u dit wilt verwijderen:" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "Weet u zeker dat u lokale authenticatie wilt uitschakelen? Als u dat doet, kan dat gevolgen hebben voor de mogelijkheid van gebruikers om in te loggen en voor de mogelijkheid van de systeembeheerder om deze wijziging terug te draaien." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "Weet u zeker dat u de workflowcreator wil verlaten zonder uw wijzigingen op te slaan?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "Weet u zeker dat u alle knooppunten in deze workflow wilt verwijderen?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "Weet u zeker dat u het onderstaande knooppunt wilt verwijderen:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "Weet u zeker dat u deze link wilt verwijderen?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "Weet u zeker dat u dit knooppunt wilt verwijderen?" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "Weet u zeker dat u de toegang van {0} wilt verwijderen uit {1}? Als u dat doet, heeft dat gevolgen voor alle leden van het team." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "Weet u zeker dat u de toegang tot {0} wilt verwijderen uit de {username}?" -#: screens/Job/JobOutput/JobOutput.jsx:844 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "Weet u zeker dat u het verzoek om deze taak te annuleren in wilt dienen?" -#: components/AdHocCommands/AdHocDetailsStep.jsx:106 -#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "Argumenten" -#: screens/Job/JobDetail/JobDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "Artefacten" -#: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "Associate" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "Fout in geassocieerde rol" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "Associatiemodus" -#: components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "Voor dit veld moet ten minste één waarde worden geselecteerd." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "Augustus" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "Authenticatie" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "Machtigingscode vervallen" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "Type authenticatieverlening" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "Auto" -#: screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "Azure AD" -#: screens/Setting/SettingList.jsx:60 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "Azure AD-instellingen" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:125 -#: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:133 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "Terug" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "Terug naar toegangsgegevens" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "Terug naar dashboard." -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "Terug naar groepen" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "Terug naar hosts" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "Terug naar inventarissen" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "Terug naar taken" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "Terug naar berichten" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "Terug naar organisaties" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "Terug naar projecten" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "Terug naar schema's" -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: 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/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "Terug naar instellingen" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "Terug naar bronnen" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "Terug naar teams" -#: screens/Template/Template.jsx:138 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "Terug naar sjablonen" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "Terug naar tokens" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "Terug naar gebruikers" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "Terug naar workflowgoedkeuringen" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "Terug naar toepassingen" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "Terug naar typen toegangsgegevens" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "Terug naar uitvoeringsomgevingen" -#: screens/InstanceGroup/ContainerGroup.jsx:56 -#: screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "Terug naar instantiegroepen" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "Terug naar beheerderstaken" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:69 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -756,11 +745,11 @@ msgid "" "path used to locate playbooks." msgstr "Basispad dat gebruikt wordt voor het vinden van draaiboeken. Mappen die binnen dit pad gevonden worden, zullen in het uitklapbare menu van de draaiboekmap genoemd worden. Het basispad en de gekozen draaiboekmap bieden samen het volledige pad dat gebruikt wordt om draaiboeken te vinden." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "Wachtwoord basisauthenticatie" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -768,1048 +757,1057 @@ msgid "" "provide a custom refspec." msgstr "Vertakking naar de kassa. Naast vertakkingen kunt u ook tags, commit hashes en willekeurige refs invoeren. Sommige commit hashes en refs zijn mogelijk niet beschikbaar, tenzij u ook een aangepaste refspec aanlevert." -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "Merkimago" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "Bladeren" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "Standaard verzamelen wij analytische gegevens over het gebruik van de service en sturen deze door naar Red Hat. Er zijn twee categorieën gegevens die door de service worden verzameld. Zie voor meer informatie <0>deze Tower-documentatiepagina. Schakel de volgende vakjes uit om deze functie uit te schakelen." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:184 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" 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:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "Cache time-out" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "Cache time-out" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "Cache time-out (seconden)" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:126 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:134 -#: components/Lookup/HostFilterLookup.jsx:326 -#: 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: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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "Annuleren" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "Synchronisatie van inventarisbron annuleren" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:820 -#: screens/Job/JobOutput/JobOutput.jsx:821 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "Taak annuleren" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "Projectsynchronisatie annuleren" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:210 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "Synchronisatie annuleren" -#: screens/Job/JobOutput/JobOutput.jsx:828 -#: screens/Job/JobOutput/JobOutput.jsx:831 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "Taak annuleren" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "Linkwijzigingen annuleren" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "Verwijdering van link annuleren" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "Opzoeken annuleren" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "Verwijdering van knooppunt annuleren" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "Terugzetten annuleren" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "Geselecteerde taak annuleren" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "Geselecteerde taken annuleren" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "Abonnement bewerken annuleren" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:389 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "{0} annuleren" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "Geannuleerd" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:152 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." msgstr "Kan aggregator logboekregistraties niet inschakelen zonder de host en het type ervan te verstrekken." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "Capaciteit" -#: components/Search/AdvancedSearch.jsx:185 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 +msgid "Capacity Adjustment" +msgstr "" + +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "Hoofdletterongevoelige versie van bevat" -#: components/Search/AdvancedSearch.jsx:209 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "Hoofdletterongevoelige versie van endswith." -#: components/Search/AdvancedSearch.jsx:173 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "Hoofdletterongevoelige versie van exact." -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "Hoofdletterongevoelige versie van regex." -#: components/Search/AdvancedSearch.jsx:197 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "Hoofdletterongevoelige versie van startswith." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:75 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." msgstr "Wijzig PROJECTS_ROOT bij het uitrollen van {brandName} om deze locatie te wijzigen." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "Gewijzigd" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "Wijzigingen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "Kanaal" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:206 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "Controleren" -#: components/Search/AdvancedSearch.jsx:251 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "Controleert of het gegeven veld of verwante object null is; verwacht een booleaanse waarde." -#: components/Search/AdvancedSearch.jsx:257 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "Controleert of de waarde van het opgegeven veld voorkomt in de opgegeven lijst; verwacht een door komma's gescheiden lijst met items." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr "Kies een .json-bestand" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "Kies een type bericht" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:28 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "Kies een draaiboekmap" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "Kies een broncontroletype" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "Kies een Webhookservice" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:199 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "Kies een soort taak" -#: components/AdHocCommands/AdHocDetailsStep.jsx:86 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "Kies een module" -#: screens/Inventory/shared/InventorySourceForm.jsx:147 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "Kies een bron" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "Kies een HTTP-methode" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." msgstr "Kies een antwoordtype of -formaat dat u als melding voor de gebruiker wilt. Raadpleeg de documentatie van Ansible Tower voor meer informatie over iedere optie." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -msgid "Choose an email option" -msgstr "Kies een e-mailoptie" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "Kies de rollen die op de geselecteerde bronnen moeten worden toegepast. Alle geselecteerde rollen worden toegepast op alle geselecteerde bronnen." -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "Kies de bronnen die nieuwe rollen gaan ontvangen. U kunt de rollen selecteren die u in de volgende stap wilt toepassen. Merk op dat de hier gekozen bronnen alle rollen ontvangen die in de volgende stap worden gekozen." -#: components/AddRole/AddResourceRole.jsx:194 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "Kies het type bron dat de nieuwe rollen gaat ontvangen. Als u bijvoorbeeld nieuwe rollen wilt toevoegen aan een groep gebruikers, kies dan Gebruikers en klik op Volgende. In de volgende stap kunt u de specifieke bronnen selecteren." -#: components/PromptDetail/PromptProjectDetail.jsx:40 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "Opschonen" -#: components/DataListToolbar/DataListToolbar.jsx:64 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "Alle filters wissen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "Abonnement wissen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "Abonnementskeuze wissen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "Klik op een beschikbaar knooppunt om een nieuwe link te maken. Klik buiten de grafiek om te annuleren." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 msgid "Click the Edit button below to reconfigure the node." msgstr "Klik op de knop Bewerken hieronder om het knooppunt opnieuw te configureren." -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "Klik op deze knop om de verbinding met het geheimbeheersysteem te verifiëren met behulp van de geselecteerde referenties en de opgegeven inputs." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "Klik om een nieuwe link naar dit knooppunt te maken." -#: screens/Template/Survey/MultipleChoiceField.jsx:114 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "Klik om de standaardwaarde te wijzigen" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "Klik om de taakdetails weer te geven" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "Client-id" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "Clientidentificatie" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "Clientidentificatie" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "Clientgeheim" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "Type client" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "Sluiten" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "Inschrijvingsmodus sluiten" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "Cloud" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "Samenvouwen" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "Opdracht" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "Compliant" -#: screens/Template/shared/JobTemplateForm.jsx:602 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "Gelijktijdige taken" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "Bevestigen" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "Verwijderen bevestigen" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "Lokale autorisatie uitschakelen bevestigen" -#: screens/User/shared/UserForm.jsx:87 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "Wachtwoord bevestigen" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "Taak annuleren bevestigen" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "Annuleren bevestigen" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "Verwijderen bevestigen" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "Loskoppelen bevestigen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "Link verwijderen bevestigen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "Knooppunt verwijderen bevestigen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "Verwijderen van alle knooppunten bevestigen" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "Alles terugzetten bevestigen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "Selectie bevestigen" -#: screens/Job/JobDetail/JobDetail.jsx:236 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "Containergroep" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "Containergroep" -#: screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "Containergroep niet gevonden." -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "Inhoud laden" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "Doorgaan" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." msgstr "Stel in hoeveel output Ansible produceert bij taken die de inventarisbron updaten." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." msgstr "Stel in hoeveel output Ansible produceert bij het uitvoeren van het draaiboek." -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." msgstr "Stel in hoeveel output Ansible produceert bij het uitvoeren van het draaiboek." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "Convergentie" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "Convergentie selecteren" -#: components/CopyButton/CopyButton.jsx:41 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "Kopiëren" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "Toegangsgegevens kopiëren" -#: components/CopyButton/CopyButton.jsx:48 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "Kopieerfout" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "Uitvoeringsomgeving kopiëren" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "Inventaris kopiëren" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "Berichtsjabloon kopiëren" -#: screens/Project/ProjectList/ProjectListItem.jsx:211 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "Project kopiëren" -#: components/TemplateList/TemplateListItem.jsx:207 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "Sjabloon kopiëren" -#: screens/Project/ProjectList/ProjectListItem.jsx:166 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "Volledige herziening kopiëren naar klembord." -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "Copyright" -#: screens/Template/shared/JobTemplateForm.jsx:406 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "Maken" -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "Nieuwe toepassing maken" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "Nieuwe toegangsgegevens maken" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "Nieuwe host maken" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "Nieuwe taaksjabloon maken" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "Nieuwe berichtsjabloon maken" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "Nieuwe organisatie maken" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "Nieuw project maken" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "Nieuw schema toevoegen" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "Nieuw team maken" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "Nieuwe gebruiker maken" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "Nieuwe workflowsjabloon maken" -#: screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "Nieuwe Smart-inventaris met het toegepaste filter maken" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "Nieuwe containergroep maken" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "Nieuw type toegangsgegevens maken" -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "Nieuw type toegangsgegevens maken" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "Nieuwe uitvoeringsomgeving maken" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "Nieuwe groep maken" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "Nieuwe host maken" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "Nieuwe instantiegroep maken" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "Nieuwe inventaris maken" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "Nieuwe Smart-inventaris maken" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "Nieuwe bron maken" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "Gebruikerstoken maken" -#: 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:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:182 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:134 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "Gemaakt" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:158 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: 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:190 -#: components/TemplateList/TemplateList.jsx:208 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:137 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 -#: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:151 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: 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:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "Gemaakt door (Gebruikersnaam)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "Gemaakt door (gebruikersnaam)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: 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:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 -#: util/getRelatedResourceDeleteDetails.js:173 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 +#: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "Toegangsgegeven" -#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:73 msgid "Credential Input Sources" msgstr "Inputbronnen toegangsgegevens" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "Naam toegangsgegevens" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "Type toegangsgegevens" -#: routeConfig.jsx:115 -#: 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 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "Types toegangsgegevens" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "Toegangsgegevens niet gevonden." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "Wachtwoorden toegangsgegevens" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "Toegangsgegevens voor authenticatie met Kubernetes of OpenShift. Moet van het type 'Kubernetes/OpenShift API Bearer Token' zijn. Indien leeg gelaten, wordt de serviceaccount van de onderliggende Pod gebruikt." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "Toegangsgegevens voor authenticatie met een beschermd containerregister." -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." msgstr "Type toegangsgegevens niet gevonden." -#: components/JobList/JobListItem.jsx:212 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:193 -#: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: 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/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: 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:374 -#: util/getRelatedResourceDeleteDetails.js:97 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 +#: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "Toegangsgegevens" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:54 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "Toegangsgegevens die een wachtwoord vereisen bij het opstarten zijn niet toegestaan. Verwijder of vervang de volgende toegangsgegevens door toegangsgegevens van hetzelfde type om verder te gaan: {0}" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "Huidige pagina" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "Aangepaste podspecificatie" -#: components/TemplateList/TemplateListItem.jsx:144 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "Aangepaste virtuele omgeving {0} moet worden vervangen door een uitvoeringsomgeving." -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:53 -msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -msgstr "Aangepaste virtuele omgeving {virtualEnvironment} moet worden vervangen door een uitvoeringsomgeving." +#: components/TemplateList/TemplateListItem.js:155 +msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "Berichten aanpassen..." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "Podspecificatie aanpassen" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "VERWIJDERD" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "Dashboard" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "Dashboard (alle activiteit)" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "Bewaartermijn van gegevens" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 -#: components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "Dag" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:173 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 msgid "Days of Data to Keep" msgstr "Dagen om gegevens te bewaren" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:108 msgid "Days remaining" msgstr "Resterende dagen" -#: screens/Job/JobOutput/JobOutput.jsx:698 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "Foutopsporing" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "December" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "Standaard" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "Standaarduitvoeringsomgeving" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "Standaardantwoord" -#: screens/Setting/SettingList.jsx:102 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "Kenmerken en functies op systeemniveau definiëren" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:235 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:246 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: 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: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:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "Verwijderen" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "Alle groepen en hosts verwijderen" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:278 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "Toegangsgegevens verwijderen" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "Uitvoeringsomgeving verwijderen" -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "Host verwijderen" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "Inventaris verwijderen" -#: screens/Job/JobDetail/JobDetail.jsx:397 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "Taak verwijderen" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "Taaksjabloon verwijderen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:348 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "Bericht verwijderen" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "Organisatie verwijderen" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "Project verwijderen" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "Vragen verwijderen" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "Schema verwijderen" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "Vragenlijst verwijderen" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "Team verwijderen" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "Gebruiker verwijderen" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "Gebruikerstoken verwijderen" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "Workflowgoedkeuring verwijderen" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "Workflow-taaksjabloon verwijderen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "Alle knooppunten verwijderen" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "Toepassing maken" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "Soort toegangsgegevens verwijderen" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "Fout verwijderen" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "Instantiegroep verwijderen" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "Inventarisbron maken" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:73 -msgid "Delete on Update" -msgstr "Verwijderen bij update" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "Smart-inventaris maken" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1817,681 +1815,721 @@ msgid "" "of time required to complete an update." msgstr "De lokale opslagplaats dient volledig verwijderd te worden voordat een update uitgevoerd wordt. Afhankelijk van het formaat van de opslagplaats kan de tijd die nodig is om een update uit te voeren hierdoor sterk verlengd worden." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 +msgid "Delete the project before syncing" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "Deze link verwijderen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "Dit knooppunt verwijderen" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "{pluralizedItemName} verwijderen?" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "Verwijderd" -#: components/TemplateList/TemplateList.jsx:268 -#: screens/Credential/CredentialList/CredentialList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:230 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "Fout bij verwijderen" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "Fout bij verwijderen" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "Geweigerd" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "Geweigerd - {0}. Zie het activiteitenlogboek voor meer informatie." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "Geweigerd door {0} - {1}" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "Weigeren" -#: screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "Afgeschaft" -#: 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:186 -#: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:227 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: 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/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:57 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: 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:148 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: 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:246 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: 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:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "Omschrijving" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:251 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "Bestemmingskanalen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "Bestemmingskanalen of -gebruikers" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "Sms-nummer(s) bestemming" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "Sms-nummer(s) bestemming" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "Bestemmingskanalen" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "Bestemmingskanalen of -gebruikers" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:61 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:71 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:63 -#: screens/InstanceGroup/InstanceGroup.jsx:64 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:144 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:37 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "Meer informatie" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "Tabblad Details" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:240 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:294 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "SSL-verificatie uitschakelen" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "SSL-verificatie uitschakelen" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "Loskoppelen" -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "Groep van host loskoppelen?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "Host van groep loskoppelen?" -#: screens/InstanceGroup/Instances/InstanceList.jsx:190 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "Instantie van instantiegroep loskoppelen?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "Verwante groep(en) loskoppelen?" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "Verwant(e) team(s) loskoppelen?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "Rol loskoppelen" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "Koppel host los!" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "Loskoppelen?" -#: screens/Template/shared/JobTemplateForm.jsx:480 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 +msgid "Discard local changes before syncing" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." msgstr "Verdeel het uitgevoerde werk met behulp van dit taaksjabloon in het opgegeven aantal taakdelen, elk deel voert dezelfde taken uit voor een deel van de inventaris." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "Documentatie." -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "Gereed" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "Download output" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "E-mail" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "E-mailopties" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:162 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" "executing job tasks." msgstr "Elke keer dat een taak uitgevoerd wordt met dit inventaris, dient het inventaris vernieuwd te worden vanuit de geselecteerde bron voordat de opdrachten van de taak uitgevoerd worden." -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 msgid "" "Each time a job runs using this project, update the\n" "revision of the project prior to starting the job." msgstr "Voer iedere keer dat een taak uitgevoerd wordt met dit project een update uit voor de herziening van het project voordat u de taak start." -#: components/Schedule/ScheduleDetail/ScheduleDetail.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:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:200 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:149 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:153 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx: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: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 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "Bewerken" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "Toegangsgegevens bewerken" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "Toegangsgegevens plug-inconfiguratie bewerken" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:46 -#: screens/Setting/Settings.jsx:49 -#: screens/Setting/Settings.jsx:53 -#: screens/Setting/Settings.jsx:56 -#: screens/Setting/Settings.jsx:59 -#: screens/Setting/Settings.jsx:62 -#: screens/Setting/Settings.jsx:65 -#: screens/Setting/Settings.jsx:68 -#: screens/Setting/Settings.jsx:71 -#: screens/Setting/Settings.jsx:74 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:93 -#: screens/Setting/Settings.jsx:96 -#: screens/Setting/Settings.jsx:99 -#: screens/Setting/Settings.jsx:102 -#: screens/Setting/Settings.jsx:105 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Settings.jsx:111 -#: screens/Setting/Settings.jsx:114 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "Details bewerken" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "Uitvoeringsomgeving bewerken" -#: screens/Host/HostGroups/HostGroupItem.jsx:50 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "Groep bewerken" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "Host bewerken" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "Inventaris bewerken" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "Link bewerken" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "Knooppunt bewerken" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "Berichtsjabloon bewerken" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "Organisatie bewerken" -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Project/ProjectList/ProjectListItem.jsx:202 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "Project bewerken" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "Vraag bewerken" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "Schema bewerken" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:122 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "Bron bewerken" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "Team bewerken" -#: components/TemplateList/TemplateListItem.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:198 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:129 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "Sjabloon bewerken" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "Gebruiker bewerken" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "Toepassing bewerken" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "Type toegangsgegevens bewerken" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "Details bewerken" -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "Groep bewerken" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "Host bewerken" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "Instantiegroep bewerken" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "Deze link bewerken" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "Dit knooppunt bewerken" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 +msgid "Edit workflow" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "Verlopen" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "Verstreken tijd" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 msgid "Elapsed time that the job ran" msgstr "Verstreken tijd in seconden dat de taak is uitgevoerd." -#: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:71 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "E-mail" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" msgstr "E-mailopties" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:64 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "Gelijktijdige taken inschakelen" -#: screens/Template/shared/JobTemplateForm.jsx:609 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "Feitenopslag inschakelen" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:215 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "HTTPS-certificaatcontrole inschakelen" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -msgid "Enable Privilege Escalation" -msgstr "Verhoging van rechten inschakelen" - -#: screens/Template/shared/JobTemplateForm.jsx:583 -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "Webhook inschakelen" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "Webhook inschakelen voor deze workflowtaaksjabloon." -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -msgid "Enable Webhooks" -msgstr "Webhook inschakelen" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:159 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "Externe logboekregistratie inschakelen" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:191 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "Logboeksysteem dat feiten individueel bijhoudt inschakelen" -#: components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "Verhoging van rechten inschakelen" -#: screens/Setting/SettingList.jsx:56 -msgid "Enable simplified login for your {brandName} applications" -msgstr "Eenvoudig inloggen inschakelen voor uw {brandName}-toepassingen" +#: screens/Setting/SettingList.js:52 +msgid "Enable simplified login for your {0} applications" +msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:589 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "Webhook inschakelen voor deze sjabloon." -#: components/Lookup/HostFilterLookup.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "Ingeschakeld" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 +msgid "Enabled Options" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "Ingeschakelde waarde" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "Ingeschakelde variabele" -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" -"callback URL. Using the URL a host can contact {BrandName}\n" +"callback URL. Using the URL a host can contact {0}\n" "and request a configuration update using this job\n" "template." -msgstr "Maakt het mogelijk een provisioning terugkoppelings-URL aan te maken. Met deze URL kan een host contact opnemen met {BrandName} en een verzoek indienen voor een configuratie-update met behulp van deze taaksjabloon." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:232 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" @@ -2499,874 +2537,892 @@ msgid "" "template" msgstr "Maakt het mogelijk een provisioning terugkoppelings-URL aan te maken. Met deze URL kan een host contact opnemen met {brandName} en een verzoek indienen voor een configuratie-update met behulp van deze taaksjabloon." -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:155 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "Versleuteld" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "Einde" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "Licentie-overeenkomst voor eindgebruikers" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -msgid "End date/time" -msgstr "Einddatum/-tijd" - -#: components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "Einde kwam niet overeen met een verwachte waarde" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "Licentie-overeenkomst voor eindgebruikers" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "Voer ten minste één zoekfilter in om een nieuwe Smart-inventaris te maken." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Geef injectoren op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis." -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Geef inputs op met JSON- of YAML-syntaxis. Raadpleeg de documentatie voor Ansible Tower voor voorbeeldsyntaxis." -#: screens/Inventory/shared/SmartInventoryForm.jsx:97 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." msgstr "Voer de variabelen van het inventaris in met JSON- of YAML-syntaxis. Gebruik de radio-knop om tussen de twee te wisselen. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis." -#: screens/Inventory/shared/InventoryForm.jsx:93 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Voer de variabelen van het inventaris in met JSON- of YAML-syntaxis. Gebruik de radio-knop om tussen de twee te wisselen. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "Voer een opmerkingstas in per regel, zonder komma's." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." msgstr "Voer één IRC-kanaal of gebruikersnaam per regel in. Het hekje (#) voor kanalen en het apenstaartje (@) voor gebruikers zijn hierbij niet vereist." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." msgstr "Voer één Slack-kanaal per regel in. Het hekje (#) is hierbij vereist." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." msgstr "Voer één e-mailadres per regel in om een lijst met ontvangers te maken voor dit type bericht." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." msgstr "Voer één telefoonnummer per regel in om aan te geven waar sms-berichten naartoe gestuurd moeten worden." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." msgstr "Voer het telefoonnummer in dat hoort bij de 'Berichtenservice' in Twilio in de indeling +18005550199." -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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 "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>Tower." -#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>aws_ec2." -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>azure_rm." -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>foreman." -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>gcp_compute." -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>openstack." -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>ovirt." -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "Voer variabelen in om de inventarisbron te configureren. Voor een gedetailleerde beschrijving om deze plug-in te configureren, zie <0>Inventarisplug-ins in de documentatie en de plug-inconfiguratiegids voor <1>vmware_vm_inventory." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Voer variabelen in met JSON- of YAML-syntaxis. Gebruik de radioknop om tussen de twee te wisselen." -#: components/JobList/JobList.jsx:202 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 -#: screens/Job/JobOutput/JobOutput.jsx:703 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "Fout" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:415 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/Project/ProjectList/ProjectList.js:289 +msgid "Error fetching updated project" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "Foutbericht" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:424 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "Foutbericht body" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "Fout bij het opslaan van de workflow!" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:51 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: 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:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:232 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: 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:193 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:197 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceList.jsx:230 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: 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: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: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:227 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:235 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:231 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: 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: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: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:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "Fout!" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "Fout:" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:670 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "Gebeurtenis" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "Gebeurtenisinformatie weergeven" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "Modus gebeurtenisdetails" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "Samenvatting van de gebeurtenis niet beschikbaar" -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "Gebeurtenissen" -#: components/Search/AdvancedSearch.jsx:167 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "Exacte overeenkomst (standaard-opzoeken indien niet opgegeven)." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: components/Search/AdvancedSearch.js:165 +msgid "Exact search on id field." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "Voorbeeld-URL's voor GIT-broncontrole zijn:" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "Voorbeeld-URL's voor Remote Archive-broncontrole zijn:" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "Voorbeeld-URL's voor Subversion-broncontrole zijn:" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "Voorbeelden hiervan zijn:" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "Voorbeelden:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "Uitvoeren ongeacht de eindtoestand van het bovenliggende knooppunt." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "Uitvoeren wanneer het bovenliggende knooppunt in een storingstoestand komt." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "Uitvoeren wanneer het bovenliggende knooppunt in een succesvolle status resulteert." -#: components/AdHocCommands/AdHocCommandsWizard.jsx:85 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:72 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "Uitvoeringsomgeving" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 -#: routeConfig.jsx:140 -#: 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 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 -#: screens/Organization/Organizations.jsx:34 -#: util/getRelatedResourceDeleteDetails.js:87 -#: util/getRelatedResourceDeleteDetails.js:194 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 +msgid "Execution Environment Missing" +msgstr "" + +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 +#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "Uitvoeringsomgevingen" -#: screens/Job/JobDetail/JobDetail.jsx:227 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "Uitvoeringsknooppunt" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -msgid "Execution environment image" -msgstr "Uitvoeringsomgeving image" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:78 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "Uitvoeringsomgeving ontbreekt of is verwijderd." -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -msgid "Execution environment name" -msgstr "Naam uitvoeringsomgeving" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "Uitvoeringsomgeving niet gevonden." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "Afsluiten zonder op te slaan" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "Uitbreiden" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "Input uitbreiden" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "Minstens één van client_email, project_id of private_key werd verwacht aanwezig te zijn in het bestand." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -msgid "Expiration" -msgstr "Vervaldatum" - -#: 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 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "Verloopt" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "Verloopt op" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "Verloopt op UTC" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "Verloopt op {0}" -#: components/JobList/JobListItem.jsx:240 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "Uitleg" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "Extern geheimbeheersysteem" -#: components/AdHocCommands/AdHocDetailsStep.jsx:295 -#: components/AdHocCommands/AdHocDetailsStep.jsx:296 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "Extra variabelen" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 -#: screens/Project/ProjectList/ProjectListItem.jsx:76 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "VOLTOOID:" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 +msgid "Fact Storage" +msgstr "" + +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "Feiten" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "Mislukt" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "Aantal mislukte hosts" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "Mislukte hosts" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "Mislukte hosts" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "Mislukte taken." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "Eén of meer workflowgoedkeuringen goed te zijn niet goedgekeurd." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "Workflowgoedkeuring is mislukt." -#: components/ResourceAccessList/ResourceAccessList.jsx:235 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "Kan rollen niet goed toewijzen" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js:249 msgid "Failed to associate role" msgstr "Kan rol niet koppelen" -#: screens/Host/HostGroups/HostGroupsList.jsx:249 -#: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "Kan niet koppelen." -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "Kan de synchronisatie van de inventarisbron niet annuleren" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:181 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "Kan projectsynchronisatie niet annuleren" -#: components/JobList/JobList.jsx:288 +#: components/JobList/JobList.js:302 msgid "Failed to cancel one or more jobs." msgstr "Kan een of meer taken niet annuleren." -#: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:390 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "Kan {0} niet annuleren" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "Kan toegangsgegevens niet kopiëren" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "Kan uitvoeringsomgeving niet kopiëren" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "Kan inventaris niet kopiëren." -#: screens/Project/ProjectList/ProjectListItem.jsx:219 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "Kan project niet kopiëren." -#: components/TemplateList/TemplateListItem.jsx:212 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "Kan sjabloon niet kopiëren." -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "Kan toepassing niet verwijderen." -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "Kan toegangsgegevens niet verwijderen" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "Kan groep {0} niet verwijderen." -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "Kan host niet verwijderen." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "Kan inventarisbron {name} niet verwijderen." -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "Kan inventaris niet verwijderen" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "Kan taaksjabloon niet verwijderen." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:363 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "Kan bericht niet verwijderen" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 msgid "Failed to delete one or more applications." msgstr "Een of meer toepassingen kunnen niet worden verwijderd." -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:212 msgid "Failed to delete one or more credential types." msgstr "Een of meer typen toegangsgegevens kunnen niet worden verwijderd." -#: screens/Credential/CredentialList/CredentialList.jsx:200 +#: screens/Credential/CredentialList/CredentialList.js:197 msgid "Failed to delete one or more credentials." msgstr "Een of meer toegangsgegevens kunnen niet worden verwijderd." -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:225 msgid "Failed to delete one or more execution environments" msgstr "Een of meer uitvoeringsomgevingen kunnen niet worden verwijderd" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "Een of meer groepen kunnen niet worden verwijderd." -#: screens/Host/HostList/HostList.jsx:220 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 msgid "Failed to delete one or more hosts." msgstr "Een of meer hosts kunnen niet worden verwijderd." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 msgid "Failed to delete one or more instance groups." msgstr "Een of meer instantiegroepen kunnen niet worden verwijderd." -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 msgid "Failed to delete one or more inventories." msgstr "Een of meer inventarissen kunnen niet worden verwijderd." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 +#: screens/Inventory/InventorySources/InventorySourceList.js:260 msgid "Failed to delete one or more inventory sources." msgstr "Een of meer inventarisbronnen kunnen niet worden verwijderd." -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 msgid "Failed to delete one or more job templates." msgstr "Een of meer taaksjablonen kunnen niet worden verwijderd." -#: components/JobList/JobList.jsx:277 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "Een of meer taken kunnen niet worden verwijderd." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 msgid "Failed to delete one or more notification template." msgstr "Een of meer berichtsjablonen kunnen niet worden verwijderd." -#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "Een of meer organisaties kunnen niet worden verwijderd." -#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "Een of meer projecten kunnen niet worden verwijderd." -#: components/Schedule/ScheduleList/ScheduleList.jsx:235 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "Een of meer schema's kunnen niet worden verwijderd." -#: screens/Team/TeamList/TeamList.jsx:203 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "Een of meer teams kunnen niet worden verwijderd." -#: components/TemplateList/TemplateList.jsx:274 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "Een of meer sjablonen kunnen niet worden verwijderd." -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "Een of meer tokens kunnen niet worden verwijderd." -#: screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.js:205 msgid "Failed to delete one or more user tokens." msgstr "Een of meer gebruikerstokens kunnen niet worden verwijderd." -#: screens/User/UserList/UserList.jsx:196 +#: screens/User/UserList/UserList.js:193 msgid "Failed to delete one or more users." msgstr "Een of meer gebruikers kunnen niet worden verwijderd." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "Een of meer workflowgoedkeuringen kunnen niet worden verwijderd." -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:180 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "Kan organisatie niet verwijderen." -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "Kan project niet verwijderen." -#: components/ResourceAccessList/ResourceAccessList.jsx:246 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "Kan rol niet verwijderen" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "Kan rol niet verwijderen." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "Kan schema niet verwijderen." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "Kan Smart-inventaris niet verwijderen." -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "Kan team niet verwijderen." -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "Kan gebruiker niet verwijderen." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "Kan workflowgoedkeuring niet verwijderen." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "Kan workflow-taaksjabloon niet verwijderen." -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "Kan {naam} niet verwijderen." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "Een of meer workflowgoedkeuringen kunnen niet worden geweigerd." -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 msgid "Failed to deny workflow approval." msgstr "Kan workflowgoedkeuring niet weigeren." -#: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "Een of meer groepen kunnen niet worden losgekoppeld." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "Een of meer hosts kunnen niet worden losgekoppeld." -#: screens/InstanceGroup/Instances/InstanceList.jsx:235 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "Een of meer instanties kunnen niet worden losgekoppeld." -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "Een of meer teams kunnen niet worden losgekoppeld." -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "Kan de aangepaste configuratie-instellingen voor inloggen niet ophalen. De standaardsysteeminstellingen worden in plaats daarvan getoond." -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:176 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: screens/Project/ProjectList/ProjectList.js:293 +msgid "Failed to fetch the updated project data." +msgstr "" + +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "Kan de taak niet starten." -#: contexts/Config.jsx:71 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "Kan de configuratie niet ophalen." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "Kan geen volledig bronobject van knooppunt ophalen." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "Kan geen knooppuntgegevens ophalen." -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "Kan testbericht niet verzenden." -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "Kan inventarisbron niet synchroniseren." -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "Kan project niet synchroniseren." -#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 msgid "Failed to sync some or all inventory sources." msgstr "Kan sommige of alle inventarisbronnen niet synchroniseren." -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "Kan niet van host wisselen." -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "Kan niet van instantie wisselen." -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "Kan niet van bericht wisselen." -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "Kan niet van schema wisselen." -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:233 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "Kan de capaciteitsaanpassing niet bijwerken." -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "Kan de vragenlijst niet bijwerken." -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "Kan gebruikerstoken niet bijwerken." -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "Mislukking" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "False" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "Februari" -#: components/Search/AdvancedSearch.jsx:179 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "Veld bevat waarde." -#: components/Search/AdvancedSearch.jsx:203 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "Veld eindigt op waarde." -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Veld voor het opgeven van een aangepaste Kubernetes of OpenShift Pod-specificatie." -#: components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "Het veld komt overeen met de opgegeven reguliere expressie." -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "Veld begint met waarde." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "Vijfde" -#: screens/Job/JobOutput/JobOutput.jsx:687 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "Bestandsverschil" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "Bestand uploaden geweigerd. Selecteer één .json-bestand." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "Bestand, map of script" -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "Voltooiingstijd" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "Voltooid" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "Eerste" -#: components/AddRole/AddResourceRole.jsx:129 -#: components/AddRole/AddResourceRole.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:132 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: 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:100 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "Voornaam" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "Eerste uitvoering" -#: components/ResourceAccessList/ResourceAccessList.jsx:181 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "Voornaam" -#: components/Search/AdvancedSearch.jsx:266 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "Selecteer eerst een sleutel" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "Pas de grafiek aan de beschikbare schermgrootte aan" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "Drijven" -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Follow" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3374,433 +3430,443 @@ msgid "" "executing the playbook." msgstr "Voor taaksjablonen selecteer \"uitvoeren\" om het draaiboek uit te voeren. Selecteer \"controleren\" om slechts de syntaxis van het draaiboek te controleren, de installatie van de omgeving te testen en problemen te rapporteren zonder het draaiboek uit te voeren." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." msgstr "Voor taaksjablonen selecteer \"uitvoeren\" om het draaiboek uit te voeren. Selecteer \"controleren\" om slechts de syntaxis van het draaiboek te controleren, de installatie van de omgeving te testen en problemen te rapporteren zonder het draaiboek uit te voeren." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "Bekijk voor meer informatie de" -#: components/AdHocCommands/AdHocDetailsStep.jsx:184 -#: components/AdHocCommands/AdHocDetailsStep.jsx:185 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:425 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "Vorken" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "Vierde" -#: components/Schedule/shared/ScheduleForm.jsx:183 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "Frequentie-informatie" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 -#: components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 +#: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "Frequentie kwam niet overeen met een verwachte waarde" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "Vrij" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "Vrijdag" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: components/Search/AdvancedSearch.js:172 +msgid "Fuzzy search on id, name or description fields." +msgstr "" + +#: components/Search/AdvancedSearch.js:159 +msgid "Fuzzy search on name field." +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "Galaxy-toegangsgegevens" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy-toegangsgegevens moeten eigendom zijn van een organisatie." -#: screens/Job/JobOutput/JobOutput.jsx:695 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "Feiten verzamelen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "Abonnement ophalen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "Abonnementen ophalen" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:145 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "Git" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "GitHub-standaard" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:63 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise-organisatie" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:66 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "GitHub Enterprise-team" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "GitHub-organisatie" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "GitHub-team" -#: screens/Setting/SettingList.jsx:64 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "GitHub-instellingen" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "Wereldwijde standaarduitvoeringsomgeving" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "Wereldwijd beschikbaar" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "Wereldwijd beschikbare uitvoeringsomgeving kan niet opnieuw worden toegewezen aan een specifieke organisatie" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "Ga naar de eerste pagina" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "Ga naar de laatste pagina" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "Ga naar de volgende pagina" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "Ga naar de vorige pagina" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: screens/Setting/SettingList.jsx:68 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "Google OAuth 2-instellingen" -#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "Google OAuth2" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "Grafana" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "Grafana API-sleutel" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:117 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:227 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "Groter dan vergelijking." -#: components/Search/AdvancedSearch.jsx:233 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "Groter dan of gelijk aan vergelijking." -#: components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "Groep" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "Groepsdetails" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "Type groep" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:232 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 -#: util/getRelatedResourceDeleteDetails.js:125 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 +#: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "Groepen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:306 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "HTTP-koppen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:301 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "HTTP-methode" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "Help" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "Verbergen" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "Omschrijving verbergen" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "Hipchat" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:83 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "Host" -#: screens/Job/JobOutput/JobOutput.jsx:682 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "Host Async mislukking" -#: screens/Job/JobOutput/JobOutput.jsx:681 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "Host Async OK" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:642 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "Configuratiesleutel host" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "Aantal hosts" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "Hostdetails" -#: screens/Job/JobOutput/JobOutput.jsx:673 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "Host is mislukt" -#: screens/Job/JobOutput/JobOutput.jsx:676 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "Hostmislukking" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "Hostfilter" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "Hostnaam" -#: screens/Job/JobOutput/JobOutput.jsx:675 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "Host OK" -#: screens/Job/JobOutput/JobOutput.jsx:680 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "Hostpolling" -#: screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "Host opnieuw proberen" -#: screens/Job/JobOutput/JobOutput.jsx:677 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "Host overgeslagen" -#: screens/Job/JobOutput/JobOutput.jsx:674 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "Host gestart" -#: screens/Job/JobOutput/JobOutput.jsx:678 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "Host onbereikbaar" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "Hostdetails" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "Modus hostdetails" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "Host niet gevonden." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 msgid "Host status information for this job is unavailable." msgstr "Statusinformatie van de host is niet beschikbaar voor deze taak." -#: routeConfig.jsx:83 -#: 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 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: 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 -#: util/getRelatedResourceDeleteDetails.js:129 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 +#: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "Hosts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "Beschikbare hosts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "Resterende hosts" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "Gebruikte hosts" - -#: components/Schedule/shared/ScheduleForm.jsx:161 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "Uur" -#: components/JobList/JobList.jsx:169 -#: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "ID van het dashboard" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "ID van het paneel" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "ID van het dashboard (optioneel)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "ID van het paneel (optioneel)" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "IRC-bijnaam" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "IRC-serveradres" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "IRC-serverpoort" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "IRC-bijnaam" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "IRC-serveradres" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "IRC-serverwachtwoord" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "IRC-serverpoort" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:235 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "Icoon-URL" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" "on the external source." msgstr "Als dit vakje is ingeschakeld, worden alle variabelen voor onderliggende groepen en hosts verwijderd en worden ze vervangen door de variabelen die aangetroffen worden in de externe bron." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -3811,433 +3877,465 @@ msgid "" "default group for the inventory." msgstr "Als dit vakje is ingeschakeld, worden alle groepen en hosts die eerder aanwezig waren in de externe bron, maar die nu verwijderd zijn, verwijderd uit de inventaris. Hosts en groepen die niet beheerd werden door de inventarisbron, worden omhoog verplaatst naar de volgende handmatig gemaakte groep. Als er geen handmatig gemaakte groep is waar ze naartoe kunnen worden verplaatst, blijven ze staan in de standaard inventarisgroep 'Alle'." -#: screens/Template/shared/JobTemplateForm.jsx:559 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." msgstr "Als deze optie ingeschakeld is, wordt het draaiboek uitgevoerd als beheerder." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible." -#: screens/Template/shared/JobTemplateForm.jsx:499 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible." -#: components/AdHocCommands/AdHocDetailsStep.jsx:205 +#: components/AdHocCommands/AdHocDetailsStep.js:200 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "Als deze mogelijkheid ingeschakeld is, worden de wijzigingen die aangebracht zijn door Ansible-taken weergegeven, waar ondersteund. Dit staat gelijk aan de diff-modus van Ansible." -#: screens/Template/shared/JobTemplateForm.jsx:603 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "Indien deze mogelijkheid ingeschakeld is, zijn gelijktijdige uitvoeringen van dit taaksjabloon toegestaan." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "Indien deze mogelijkheid ingeschakeld is, zijn gelijktijdige uitvoeringen van deze workflow-taaksjabloon toegestaan." -#: screens/Template/shared/JobTemplateForm.jsx:610 +#: screens/Template/shared/JobTemplateForm.js:613 msgid "" "If enabled, this will store gathered facts so they can\n" "be viewed at the host level. Facts are persisted and\n" "injected into the fact cache at runtime." -msgstr "Indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze kunnen worden weergegeven op hostniveau. Feiten worden bewaard en\n" +msgstr "" +"Indien ingeschakeld, worden de verzamelde feiten opgeslagen zodat ze kunnen worden weergegeven op hostniveau. Feiten worden bewaard en\n" "geïnjecteerd in de feitencache tijdens runtime." -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:151 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "Neem zodra u klaar bent om te updaten of te verlengen <0>contact met ons op." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." msgstr "Als u geen abonnement heeft, kunt u bij Red Hat terecht voor een proefabonnement." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "Als u alleen de toegang voor deze specifieke gebruiker wilt verwijderen, verwijder deze dan uit het team." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" -msgstr "Als u wilt dat de inventarisbron wordt bijgewerkt bij\n" +msgstr "" +"Als u wilt dat de inventarisbron wordt bijgewerkt bij\n" "het opstarten en bij projectupdates, klik op Update bij opstarten, en ga ook naar" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: 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:99 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "Image" -#: screens/Job/JobOutput/JobOutput.jsx:690 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "Inclusief bestand" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." -msgstr "Geeft aan of een host beschikbaar is en opgenomen moet worden in lopende taken. Voor hosts die deel uitmaken van een externe inventaris, kan dit worden\n" +msgstr "" +"Geeft aan of een host beschikbaar is en opgenomen moet worden in lopende taken. Voor hosts die deel uitmaken van een externe inventaris, kan dit worden\n" "gereset worden door het inventarissynchronisatieproces." -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "Info" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "Gestart door" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "Gestart door" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "Gestart door (gebruikersnaam)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "Configuratie-injector" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "Configuratie-input" -#: screens/Inventory/shared/InventoryForm.jsx:78 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "Toegangsgegevens voor Insights" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "Insights for Ansible Automation Platform" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Dashboard Insights for Ansible Automation Platform" -#: components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "Systeem-ID Insights" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "Instantie" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "Instantiefilters" -#: screens/Job/JobDetail/JobDetail.jsx:230 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "Instantiegroep" -#: 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: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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "Instantiegroepen" -#: components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "Instantie-id" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "Instantiegroep" -#: screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "Kan instantiegroep niet vinden." -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 +msgid "Instance group used capacity" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "Instantiegroepen" -#: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "Instanties" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "Geheel getal" -#: util/validators.jsx:67 +#: util/validators.js:88 msgid "Invalid email address" msgstr "Ongeldig e-mailadres" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "Ongeldige bestandsindeling. Upload een geldig Red Hat-abonnementsmanifest." -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "Ongeldig linkdoel. Kan niet linken aan onder- of bovenliggende knooppunten. Grafiekcycli worden niet ondersteund." -#: screens/Login/Login.jsx:135 +#: util/validators.js:33 +msgid "Invalid time format" +msgstr "" + +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "Ongeldige gebruikersnaam of wachtwoord. Probeer het opnieuw." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 -#: util/getRelatedResourceDeleteDetails.js:66 -#: util/getRelatedResourceDeleteDetails.js:208 -#: util/getRelatedResourceDeleteDetails.js:276 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 +#: util/getRelatedResourceDeleteDetails.js:201 +#: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "Inventarissen" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "Inventarissen met bronnen kunnen niet gekopieerd worden" -#: components/HostForm/HostForm.jsx:30 -#: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:253 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:164 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:47 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "Inventaris" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "Inventaris (naam)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "Inventarisbestand" -#: components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "Inventaris-id" -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "Inventarisbron" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "Synchronisatie inventarisbronnen" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:102 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "Fout tijdens synchronisatie inventarisbronnen" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: util/getRelatedResourceDeleteDetails.js:73 -#: util/getRelatedResourceDeleteDetails.js:153 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 +#: util/getRelatedResourceDeleteDetails.js:66 +#: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "Inventarisbronnen" -#: components/JobList/JobList.jsx:181 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "Inventarissynchronisatie" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "Inventarisupdate" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "Inventarisbestand" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "Inventaris niet gevonden." -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "Inventarissynchronisatie" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "Fout tijdens inventarissynchronisatie" -#: screens/Job/JobOutput/JobOutput.jsx:684 +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "Item mislukt" -#: screens/Job/JobOutput/JobOutput.jsx:683 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "Item OK" -#: screens/Job/JobOutput/JobOutput.jsx:685 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "Item overgeslagen" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "Items" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "Items per pagina" -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:90 -#: screens/Project/ProjectList/ProjectListItem.jsx:69 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "TAAK-ID:" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "JSON" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "JSON-tabblad" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "JSON:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "Januari" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "Taak" -#: components/JobList/JobListItem.jsx:96 -#: 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 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "Fout bij annuleren taak" -#: screens/Job/JobDetail/JobDetail.jsx:410 -#: screens/Job/JobOutput/JobOutput.jsx:852 -#: screens/Job/JobOutput/JobOutput.jsx:853 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "Fout bij verwijderen taak" -#: screens/Job/JobDetail/JobDetail.jsx:243 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "Taken verdelen" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:479 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "Taken verdelen" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "Taakstatus" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:220 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:292 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:520 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "Taaktags" -#: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:199 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:29 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "Taaksjabloon" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:40 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "De standaardreferenties van de taaksjabloon moeten worden vervangen door een van hetzelfde type. Selecteer een toegangsgegeven voor de volgende types om verder te gaan: {0}" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 -#: util/getRelatedResourceDeleteDetails.js:107 -#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:100 +#: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "Taaksjablonen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "Taaksjablonen met een ontbrekende inventaris of een ontbrekend project kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten. Selecteer een andere sjabloon of herstel de ontbrekende velden om verder te gaan." @@ -4245,696 +4343,694 @@ msgstr "Taaksjablonen met een ontbrekende inventaris of een ontbrekend project k msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "Taaksjablonen met toegangsgegevens die om een wachtwoord vragen, kunnen niet worden geselecteerd tijdens het maken of bewerken van knooppunten" -#: components/JobList/JobList.jsx:177 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:251 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "Soort taak" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "Taakstatus" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "Grafiektabblad Taakstatus" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "Taaksjablonen" -#: components/JobList/JobList.jsx:160 -#: components/JobList/JobList.jsx:236 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:74 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:73 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:90 -#: screens/Setting/Settings.jsx:72 -#: screens/Template/Template.jsx:164 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "Taken" -#: screens/Setting/SettingList.jsx:95 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "Taakinstellingen" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "Juli" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "Juni" -#: components/Search/AdvancedSearch.jsx:132 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "Sleutel" -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "Sleutel selecteren" -#: components/Search/AdvancedSearch.jsx:126 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "Sleutel typeahead" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "Trefwoord" -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "LDAP" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "LDAP 1" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "LDAP 2" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "LDAP 3" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "LDAP 4" -#: screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "LDAP 5" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "LDAP-standaard" -#: screens/Setting/SettingList.jsx:72 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "LDAP-instellingen" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "LDAP1" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "LDAP2" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "LDAP3" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "LDAP4" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:173 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "Labelnaam" -#: components/JobList/JobListItem.jsx:225 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:187 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:102 -#: components/TemplateList/TemplateListItem.jsx:306 -#: screens/Job/JobDetail/JobDetail.jsx:277 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:392 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "Labels" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "Laatste" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "Laatste taakstatus" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "Laatste login" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:282 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:187 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "Laatst aangepast" -#: components/AddRole/AddResourceRole.jsx:133 -#: components/AddRole/AddResourceRole.jsx:147 -#: components/ResourceAccessList/ResourceAccessList.jsx:136 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: 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:106 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "Achternaam" -#: components/TemplateList/TemplateList.jsx:222 -#: components/TemplateList/TemplateListItem.jsx:153 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "Laatst uitgevoerd" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "Laatste uitvoering" -#: components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "Laatste taak" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -msgid "Last job run" -msgstr "Laatste uitgevoerde taak" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "Laatste wijziging" -#: components/ResourceAccessList/ResourceAccessList.jsx:182 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "Achternaam" -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "Laatst gebruikt" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:106 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "Starten" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "Beheertaak starten" -#: components/TemplateList/TemplateListItem.jsx:173 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "Sjabloon opstarten" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "Beheertaak opstarten" -#: components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "Sjabloon opstarten" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "Workflow opstarten" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "Opstarten | {0}" -#: components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "Gestart door" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "Opgestart door (gebruikersnaam)" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "Meer informatie over Insights for Ansible Automation Platform" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "Laat dit veld leeg om de uitvoeringsomgeving globaal beschikbaar te maken." -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "Legenda" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "Minder dan vergelijking." -#: components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "Minder dan of gelijk aan vergelijking." -#: components/AdHocCommands/AdHocDetailsStep.jsx:164 -#: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:207 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:76 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:441 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "Limiet" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "Link naar een beschikbaar knooppunt" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "Laden" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "Lokale tijdzone" -#: components/Schedule/shared/ScheduleForm.jsx:138 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "Lokale tijdzone" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "Inloggen" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -msgid "Log aggregator test sent successfully." -msgstr "Logboekaggregatortest met succes verzonden." - -#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "Logboekregistratie" -#: screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "Instellingen voor logboekregistratie" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:166 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "Afmelden" -#: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "Opzoekmodus" -#: components/Search/AdvancedSearch.jsx:150 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "Opzoeken selecteren" -#: components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "Type opzoeken" -#: components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "Typeahead opzoeken" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 -#: screens/Project/ProjectList/ProjectListItem.jsx:67 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "MEEST RECENTE SYNCHRONISATIE" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:249 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "Toegangsgegevens machine" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:98 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "Toegangsgegevens machine" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -msgid "Managed by Tower" -msgstr "Beheerd door Tower" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 +msgid "Managed" +msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "Beheerde knooppunten" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:37 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "Beheertaak" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "Beheerderstaken" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "Beheertaak" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "Fout bij opstarten van beheertaak" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "Beheertaak niet gevonden." -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "Beheertaken" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:76 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: 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:144 -#: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "Handmatig" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "Maart" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "Mattermost" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "Max. hosts" -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "Maximum" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "Maximumlengte" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "Mei" -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "Leden" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "Metadata" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "Metrisch" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "Meetwaarden" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "Minimum" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "Minimumlengte" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:33 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "Minimum aantal instanties dat automatisch toegewezen wordt aan deze groep wanneer nieuwe instanties online komen." -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:43 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "Minimumpercentage van alle instanties die automatisch toegewezen worden aan deze groep wanneer nieuwe instanties online komen." -#: components/Schedule/shared/ScheduleForm.jsx:160 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "Minuut" -#: screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.js:96 +msgid "Miscellaneous Authentication" +msgstr "" + +#: screens/Setting/SettingList.js:106 +msgid "Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "Divers systeem" -#: screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "Diverse systeeminstellingen" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "Ontbrekend" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:75 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "Ontbrekende bron" -#: components/Lookup/HostFilterLookup.jsx:357 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 -#: screens/User/UserTokenList/UserTokenList.jsx:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "Gewijzigd" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:162 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:212 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:141 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 -#: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:155 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: 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:144 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "Gewijzigd door (gebruikersnaam)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "Gewijzigd door (gebruikersnaam)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "Module" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "Ma" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "Maandag" -#: components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "Maand" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "Meer informatie" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "Meer informatie voor" -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "Multi-Select" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "Meerkeuze" -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "Meerkeuze-opties (meerdere keuzes mogelijk)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "Meerkeuze-opties (één keuze mogelijk)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "Meerkeuze-opties" -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:153 -#: components/AddRole/AddResourceRole.jsx:169 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: 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: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: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: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:161 -#: components/Schedule/ScheduleList/ScheduleList.jsx:181 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:187 -#: components/TemplateList/TemplateList.jsx:220 -#: components/TemplateList/TemplateListItem.jsx:126 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -4947,291 +5043,307 @@ msgstr "Meerkeuze-opties" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: 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:128 -#: screens/Credential/CredentialList/CredentialList.jsx:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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: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: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:91 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupsList.jsx:158 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: 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:240 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: 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: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:49 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: 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:143 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: 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: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:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:131 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:168 -#: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx: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:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: 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:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "Naam" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "Navigatie" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "Nooit" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "Nooit bijgewerkt" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "Verloopt nooit" -#: components/JobList/JobList.jsx:196 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "Nieuw" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:80 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:135 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "Volgende" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:163 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "Volgende uitvoering" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:262 msgid "No" msgstr "Geen" -#: screens/Job/JobOutput/JobOutput.jsx:691 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "Geen overeenkomende hosts" -#: screens/Job/JobOutput/JobOutput.jsx:679 -#: screens/Job/JobOutput/JobOutput.jsx:692 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "Geen resterende hosts" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "Geen JSON beschikbaar" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "Geen taken" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "Geen standaardfout beschikbaar" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "Geen standaardoutput beschikbaar" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "Geen fouten bij inventarissynchronisatie." -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "Geen items gevonden." -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "Geen resultaat gevonden" -#: components/Search/AdvancedSearch.jsx:100 -#: components/Search/AdvancedSearch.jsx:136 -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "Geen resultaten gevonden" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "Geen abonnementen gevonden" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "Geen vragenlijstvragen gevonden." -#: components/PaginatedDataList/PaginatedDataList.jsx:88 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "Geen {pluralizedItemName} gevonden" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "Type knooppunt" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "Type knooppunt" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "Geen" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "Geen (eenmaal uitgevoerd)" -#: components/Schedule/shared/ScheduleForm.jsx:159 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "Geen (eenmaal uitgevoerd)" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:28 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "Normale gebruiker" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "Niet gevonden" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "Niet geconfigureerd" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "Niet geconfigureerd voor inventarissynchronisatie." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." msgstr "Let op: Alleen hosts die zich direct in deze groep bevinden, kunnen worden losgekoppeld. Hosts in subgroepen moeten rechtstreeks worden losgekoppeld van het subgroepniveau waar ze bij horen." -#: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 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" @@ -5239,11 +5351,19 @@ msgid "" "with directly and indirectly." msgstr "Merk op dat u de groep na het ontkoppelen nog steeds in de lijst kunt zien als de host ook lid is van de onderliggende elementen van die groep. Deze lijst toont alle groepen waaraan de host is direct en indirect is gekoppeld." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "Opmerking: dit veld gaat ervan uit dat de naam op afstand \"oorsprong\" is." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -5253,324 +5373,319 @@ msgid "" "password information." msgstr "Opmerking: als u een SSH-protocol gebruikt voor GitHub of Bitbucket, voer dan alleen een SSH-sleutel in. Voer geen gebruikersnaam in (behalve git). Daarnaast ondersteunen GitHub en Bitbucket geen wachtwoordauthenticatie bij gebruik van SSH. Het GIT-alleen-lezen-protocol (git://) gebruikt geen gebruikersnaam- of wachtwoordinformatie." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "Berichtkleur" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "Berichtsjabloon niet gevonden" -#: 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 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 +#: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "Berichtsjablonen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "Berichttype" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "Berichtkleur" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "Bericht is verzonden" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "Time-out voor bericht." -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "Berichttype" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:150 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "Berichten" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "November" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "OK" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "Voorvallen" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "Oktober" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "Uit" -#: components/AdHocCommands/AdHocDetailsStep.jsx:212 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "Aan" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "Bij mislukken" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "Bij slagen" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "Aan-datum" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "Aan-dagen" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "Alleen ordenen op" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "Optie Details" -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." msgstr "Optionele labels die de taaksjabloon beschrijven, zoals 'dev' of 'test'. Labels kunnen gebruikt worden om taaksjablonen en uitgevoerde taken te ordenen en filteren." -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "Optioneel: selecteer de toegangsgegevens die u wilt gebruiken om statusupdates terug te sturen naar de webhookservice." -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:165 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:167 -#: components/PromptDetail/PromptProjectDetail.jsx:93 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:552 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "Opties" -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:98 -#: components/PromptDetail/PromptProjectDetail.jsx:57 -#: components/PromptDetail/PromptProjectDetail.jsx:67 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: components/TemplateList/TemplateListItem.jsx:240 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: 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:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:55 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:135 -#: screens/Project/ProjectList/ProjectListItem.jsx:236 -#: screens/Project/ProjectList/ProjectListItem.jsx:247 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: 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:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "Organisatie" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "Organisatie (naam)" -#: screens/Team/TeamList/TeamList.jsx:133 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "Naam van organisatie" -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "Organisatie niet gevonden." #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: 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 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 -#: util/getRelatedResourceDeleteDetails.js:238 -#: util/getRelatedResourceDeleteDetails.js:272 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 +#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "Organisaties" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "Overige meldingen" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "Niet compliant" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "Output" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "Overschrijven" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -msgid "Overwrite Variables" -msgstr "Variabelen overschrijven" +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 +msgid "Overwrite local groups and hosts from remote inventory source" +msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 +msgid "Overwrite local variables from remote inventory source" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "Variabelen overschrijven" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "BERICHT" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "PUT" -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "Pagerduty" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:206 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "Subdomein Pagerduty" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "Subdomein Pagerduty" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "Paginering" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "Omlaag pannen" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "Naar links pannen" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "Naar rechts pannen" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "Omhoog pannen" -#: components/AdHocCommands/AdHocDetailsStep.jsx:266 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "Geef extra opdrachtregelwijzigingen in door. Er zijn twee opdrachtregelparameters voor Ansible:" -#: screens/Template/shared/JobTemplateForm.jsx:414 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5578,311 +5693,319 @@ msgid "" "documentation for example syntax." msgstr "Geef extra opdrachtregelvariabelen op in het draaiboek. Dit is de opdrachtregelparameter -e of --extra-vars voor het Ansible-draaiboek. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie voor voorbeeldsyntaxis" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "Geef extra commandoregelvariabelen op in het draaiboek. Dit is de commandoregelparameter -e of --extra-vars voor het ansible-draaiboek. Geef sleutel/waarde-paren op met YAML of JSON. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis" -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: 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:76 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "Wachtwoord" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "Afgelopen 24 uur" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "Afgelopen maand" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "Afgelopen twee weken" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "Afgelopen week" -#: components/JobList/JobList.jsx:197 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "In afwachting" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "In afwachting van workflowgoedkeuringen" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "In afwachting om verwijderd te worden" -#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "Voer een zoekopdracht uit om een hostfilter te definiëren" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -msgid "Personal access token" -msgstr "Persoonlijke toegangstoken" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "Afspelen" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "Aantal afspelen" -#: screens/Job/JobOutput/JobOutput.jsx:696 +#: screens/Job/JobOutput/JobOutput.js:768 msgid "Play Started" msgstr "Afspelen gestart" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: screens/Job/JobDetail/JobDetail.jsx:220 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:355 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "Draaiboek" -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "Draaiboek controleren" -#: screens/Job/JobOutput/JobOutput.jsx:697 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "Draaiboek voltooid" -#: components/PromptDetail/PromptProjectDetail.jsx:103 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:179 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:85 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "Draaiboekmap" -#: components/JobList/JobList.jsx:182 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "Draaiboek uitvoering" -#: screens/Job/JobOutput/JobOutput.jsx:688 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "Draaiboek gestart" -#: components/TemplateList/TemplateList.jsx:204 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "Naam van draaiboek" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "Uitvoering van draaiboek" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "Uitvoeringen van het draaiboek" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "Voeg vragenlijstvragen toe." -#: components/PaginatedDataList/PaginatedDataList.jsx:87 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Voeg {pluralizedItemName} toe om deze lijst te vullen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "Klik op de startknop om te beginnen." -#: util/validators.jsx:116 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "Voer een geldige URL in." -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "Voer een waarde in." -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "Log in" -#: components/Schedule/shared/ScheduleForm.jsx:575 +#: components/Schedule/shared/ScheduleForm.js:568 msgid "Please select a day number between 1 and 31." msgstr "Selecteer een getal tussen 1 en 31" -#: screens/Template/shared/JobTemplateForm.jsx:170 +#: screens/Template/shared/JobTemplateForm.js:173 msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "Selecteer een inventaris of schakel de optie Melding bij opstarten in." -#: components/Schedule/shared/ScheduleForm.jsx:567 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "Kies een einddatum/-tijd die na de begindatum/-tijd komt." -#: components/Lookup/HostFilterLookup.jsx:297 +#: components/Lookup/HostFilterLookup.js:328 msgid "Please select an organization before editing the host filter" msgstr "Selecteer een organisatie voordat u het hostfilter bewerkt." -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "Overschrijven Podspec" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "Beleid instantieminimum" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:38 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "Beleid instantiepercentage" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "Vul veld vanuit een extern geheimbeheersysteem" -#: components/Lookup/HostFilterLookup.jsx:287 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" "Refer to the documentation for further syntax and\n" "examples. Refer to the Ansible Tower documentation for further syntax and\n" "examples." -msgstr "Vul de hosts voor deze inventaris door gebruik te maken van een zoekfilter. Voorbeeld: ansible_facts.ansible_distribution: \"RedHat\".\n" +msgstr "" +"Vul de hosts voor deze inventaris door gebruik te maken van een zoekfilter. Voorbeeld: ansible_facts.ansible_distribution: \"RedHat\".\n" "Raadpleeg de documentatie voor verdere syntaxis en\n" "voorbeelden. Raadpleeg de documentatie van Ansible Tower voor verdere syntaxis en\n" "voorbeelden." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:98 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "Poort" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "Voorwaarden voor het uitvoeren van dit knooppunt wanneer er meerdere bovenliggende elementen zijn. Raadpleeg de" -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -msgid "Press 'Enter' to add more answer choices. One answer choice per line." -msgstr "Druk op 'Enter' om meer antwoordkeuzen toe te voegen. Eén antwoordkeuze per regel." +#: screens/Template/Survey/MultipleChoiceField.js:64 +msgid "" +"Press 'Enter' to add more answer choices. One answer\n" +"choice per line." +msgstr "" -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "Druk op Enter om te bewerken. Druk op ESC om het bewerken te stoppen." -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "Voorvertoning" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "Privésleutel wachtwoordzin" -#: screens/Template/shared/JobTemplateForm.jsx:558 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "Verhoging van rechten" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "Wachtwoord verhoging van rechten" -#: components/JobList/JobListItem.jsx:196 -#: 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 -#: components/TemplateList/TemplateListItem.jsx:268 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:213 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "Project" -#: components/PromptDetail/PromptProjectDetail.jsx:100 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:176 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:63 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "Basispad project" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "Projectsynchronisatie" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "Fout tijdens projectsynchronisatie" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "Projectupdate" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "Feit niet gevonden." -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "Mislukte projectsynchronisaties" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: 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 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 -#: util/getRelatedResourceDeleteDetails.js:201 -#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:194 +#: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "Projecten" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "Onderliggende groepen en hosts promoveren" -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:628 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "Melding" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "Meldingsoverschrijvingen" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "Melding bij opstarten" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "Melding | {0}" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "Invoerwaarden" -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -5890,7 +6013,7 @@ msgid "" "documentation for more information and examples on patterns." msgstr "Geef een hostpatroon op om de lijst van hosts die beheerd of beïnvloed worden door het draaiboek verder te beperken. Meerdere patronen zijn toegestaan. Raadpleeg de documentatie van Ansible voor meer informatie over en voorbeelden van patronen." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -5898,17 +6021,17 @@ msgid "" "information and examples on patterns." msgstr "Geef een hostpatroon op om de lijst van hosts die beheerd of beïnvloed worden door het draaiboek verder te beperken. Meerdere patronen zijn toegestaan. Raadpleeg de documentatie van Ansible voor meer informatie over en voorbeelden van patronen." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:159 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "Geef een waarde op voor dit veld of selecteer de optie Melding bij opstarten." -#: components/AdHocCommands/AdHocDetailsStep.jsx:270 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." msgstr "Geef sleutel/waardeparen op met behulp van YAML of JSON." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -5916,788 +6039,818 @@ msgid "" "retrieving renewal or expanded subscriptions." msgstr "Geef uw Red Hat- of Red Hat Satellite-gegevens hieronder door en u kunt kiezen uit een lijst met beschikbare abonnementen. De toegangsgegevens die u gebruikt, worden opgeslagen voor toekomstig gebruik bij het ophalen van verlengingen of uitbreidingen van abonnementen." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "Geef uw Red Hat- of Red Hat Satellite-toegangsgegevens op om het Insights for Ansible Automation Platform in te schakelen." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:629 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "Provisioning terugkoppelings-URL" -#: screens/Template/shared/JobTemplateForm.jsx:624 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "Provisioning terugkoppelingsdetails" -#: screens/Template/shared/JobTemplateForm.jsx:563 -#: screens/Template/shared/JobTemplateForm.jsx:566 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "Provisioning terugkoppelingen" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "Pullen" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "Vraag" -#: screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "RADIUS" -#: screens/Setting/SettingList.jsx:76 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "RADIUS-instellingen" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:201 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "Lezen" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "Recente taken" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "Tabblad Lijst met recente takenlijst" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "Recente sjablonen" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "Tabblad Lijst met recente sjablonen" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:88 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 +msgid "Recent jobs" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "Lijst met ontvangers" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "Lijst met ontvangers" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:148 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "Red Hat-virtualizering" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "Red Hat-abonnementsmanifest" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "URI's doorverwijzen" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "URI's doorverwijzen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "Doorverwijzen naar dashboard" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "Doorverwijzen naar abonnementsdetails" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "Raadpleeg de" -#: screens/Template/shared/JobTemplateForm.jsx:434 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." msgstr "Raadpleeg de documentatie van Ansible voor meer informatie over het configuratiebestand." -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "Token verversen" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "Vernieuwingstoken vervallen" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: screens/Project/ProjectList/ProjectListItem.js:130 +msgid "Refresh for revision" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:132 +msgid "Refresh project revision" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "Regio's" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "Toegangsgegevens registreren" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Reguliere expressie waarbij alleen overeenkomende hostnamen worden geïmporteerd. Het filter wordt toegepast als een nabewerkingsstap nadat eventuele filters voor inventarisplugins zijn toegepast." -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "Gerelateerde groepen" -#: components/JobList/JobListItem.jsx:129 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:369 -#: screens/Job/JobDetail/JobDetail.jsx:377 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 +msgid "Related search type" +msgstr "" + +#: components/Search/AdvancedSearch.js:146 +msgid "Related search type typeahead" +msgstr "" + +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "Opnieuw starten" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "Taak opnieuw starten" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "Alle hosts opnieuw starten" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "Mislukte hosts opnieuw starten" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "Opnieuw starten bij" -#: components/JobList/JobListItem.jsx:109 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "Opnieuw opstarten met hostparameters" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:147 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "Extern archief" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "Verwijderen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "Alle knooppunten verwijderen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "Link verwijderen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "Knooppunt verwijderen" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "Verwijder alle plaatselijke aanpassingen voordat een update uitgevoerd wordt." -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "{0} toegang verwijderen" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "{0} chip verwijderen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "Als u deze link verwijdert, wordt de rest van de vertakking zwevend en wordt deze onmiddellijk bij lancering uitgevoerd." -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "Frequentie herhalen" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "Vervangen" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:50 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "Veld vervangen door nieuwe waarde" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "Abonnement aanvragen" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "Vereist" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "Bronnaam" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "Bron verwijderd" -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "Hulpbronnen" -#: components/TemplateList/TemplateListItem.jsx:133 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "Er ontbreken hulpbronnen uit dit sjabloon." -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "Oorspronkelijke waarde herstellen." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "Haal de ingeschakelde status op uit het gegeven dictaat van de hostvariabelen. De ingeschakelde variabele kan worden gespecificeerd met behulp van puntnotatie, bijvoorbeeld: 'foo.bar'" -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:837 -#: screens/Job/JobOutput/JobOutput.jsx:840 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "Teruggeven" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "Terug naar abonnementenbeheer" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "Retourneert resultaten die andere waarden hebben dan deze, evenals andere filters." -#: components/Search/AdvancedSearch.jsx:106 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "Retourneert resultaten die voldoen aan dit filter en aan andere filters. Dit is het standaard ingestelde type als er niets is geselecteerd." -#: components/Search/AdvancedSearch.jsx:112 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "Retourneert resultaten die voldoen aan dit filter of aan andere filters." -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "Terugzetten" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "Alles terugzetten" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "Alles terugzetten naar standaardinstellingen" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:49 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "Veld terugzetten op eerder opgeslagen waarde" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "Instellingen terugzetten" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "Terugzetten op fabrieksinstellingen." -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:171 -#: screens/Project/ProjectList/ProjectListItem.jsx:156 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "Herziening" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "Herziening #" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: 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:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "Rol" -#: components/ResourceAccessList/ResourceAccessList.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:156 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "Rollen" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "Uitvoeren" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "Opdracht uitvoeren" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:123 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "Opdracht uitvoeren" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "Uitvoeren om de" -#: components/Schedule/shared/ScheduleForm.jsx:154 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "Uitvoerfrequentie" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "Uitvoeren op" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "Uitvoertype" -#: components/JobList/JobList.jsx:199 -#: components/TemplateList/TemplateListItem.jsx:105 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "In uitvoering" -#: screens/Job/JobOutput/JobOutput.jsx:689 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "Handlers die worden uitgevoerd" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "Taken in uitvoering" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:170 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "Taken in uitvoering" -#: screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "SAML" -#: screens/Setting/SettingList.jsx:80 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "SAML-instellingen" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "SCM-update" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "SOCIAAL" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "SSH-wachtwoord" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "SSL-verbinding" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "BEGINNEN" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:93 -#: screens/Project/ProjectList/ProjectListItem.jsx:72 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "STATUS:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "Zat" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "Zaterdag" -#: components/AddRole/AddResourceRole.jsx:265 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:611 -#: components/Schedule/shared/ScheduleForm.jsx:617 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "Opslaan" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "Opslaan en afsluiten" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:232 -msgid "Save and enable log aggregation before testing the log aggregator." -msgstr "Sla logboekaggregatie op en schakel deze in voordat u de logboekaggregator test." - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "Linkwijzigingen opslaan" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "Opslaan gelukt!" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "Details van schema" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "Details van schema" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "Schema is actief" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "Schema is actief" -#: components/Schedule/shared/ScheduleForm.jsx:531 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "Er ontbreekt een regel in het schema" -#: components/Schedule/ScheduleList/ScheduleList.jsx:222 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:157 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "Schema's" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:126 -#: screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "Bereik" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "Eerste scrollen" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "Laatste scrollen" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "Volgende scrollen" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "Vorige scrollen" -#: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "Zoeken" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "Zoeken is uitgeschakeld terwijl de taak wordt uitgevoerd" -#: components/Search/AdvancedSearch.jsx:275 -#: components/Search/Search.jsx:286 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "Knop Zoekopdracht verzenden" -#: components/Search/Search.jsx:275 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "Input voor tekst zoeken" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "Seconde" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: components/PromptDetail/PromptProjectDetail.jsx:96 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "Seconden" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "Zie fouten links" -#: components/JobList/JobListItem.jsx:68 -#: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "Selecteren" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "Type toegangsgegevens selecteren" -#: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "Groepen selecteren" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "Hosts selecteren" -#: components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "Input selecteren" -#: screens/InstanceGroup/Instances/InstanceList.jsx:221 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "Instanties selecteren" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "Items selecteren" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "Items in lijst selecteren" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "Labels selecteren" -#: components/AddRole/AddResourceRole.jsx:254 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "Rollen selecteren om toe te passen" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "Teams selecteren" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "Selecteer een JSON-geformatteerde serviceaccountsleutel om de volgende velden automatisch in te vullen." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "Selecteer een knooppunttype" -#: components/AddRole/AddResourceRole.jsx:190 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "Selecteer een brontype" -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." msgstr "Selecteer een vertakking voor de taaksjabloon. Deze vertakking wordt toegepast op alle taaksjabloonknooppunten die vragen naar een vertakking." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "Selecteer een vertakking voor de workflow. Deze vertakking wordt toegepast op alle taaksjabloonknooppunten die vragen naar een vertakking" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Selecteer een vertakking voor de workflow. Deze vertakking wordt toegepast op alle jobsjabloonknooppunten die vragen naar een vertakking." -#: screens/Credential/shared/CredentialForm.jsx:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "Type toegangsgegevens selecteren" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "Instantie selecteren" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "Taak selecteren om deze te annuleren" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "Metriek selecteren" -#: components/AdHocCommands/AdHocDetailsStep.jsx:79 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "Module selecteren" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "Draaiboek selecteren" -#: screens/Template/shared/JobTemplateForm.jsx:323 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "Selecteer een project voordat u de uitvoeringsomgeving bewerkt." -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "Rij selecteren om deze goed te keuren" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "Rij selecteren om deze te verwijderen" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "Rij selecteren om deze te weigeren" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "Rij selecteren om deze te ontkoppelen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "Abonnement selecteren" -#: components/Schedule/shared/ScheduleForm.jsx:84 -msgid "Select a valid date and time for this field" -msgstr "Geldige datum en tijd voor dit veld selecteren" - -#: components/HostForm/HostForm.jsx:54 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: components/Schedule/shared/ScheduleForm.jsx:88 -#: components/Schedule/shared/ScheduleForm.jsx:92 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: 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:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 -#: screens/User/shared/UserForm.jsx:119 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "Waarde voor dit veld selecteren" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "Selecteer een webhookservice." -#: components/DataListToolbar/DataListToolbar.jsx:73 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "Alles selecteren" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "Type activiteit selecteren" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 msgid "Select an instance and a metric to show chart" msgstr "Instantie en metriek selecteren om grafiek te tonen" -#: 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 "Selecteer een inventaris voor de workflow. Deze inventaris wordt toegepast op alle jobsjabloonknooppunten die vragen naar een inventaris." +#: screens/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." +msgstr "" -#: screens/Project/shared/ProjectForm.jsx:204 +#: components/LaunchPrompt/steps/SurveyStep.js:128 +msgid "Select an option" +msgstr "" + +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "Selecteer een organisatie voordat u de standaard uitvoeringsomgeving bewerkt." -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -6706,326 +6859,331 @@ msgid "" "credential(s) become the defaults that can be updated at run time." msgstr "Selecteer toegangsgegevens om toegang te krijgen tot de knooppunten waartegen deze taak uitgevoerd zal worden. U kunt slechts één set toegangsgegevens van iedere soort kiezen. In het geval van machine-toegangsgegevens (SSH) moet u, als u 'melding bij opstarten' aanvinkt zonder toegangsgegevens te kiezen, bij het opstarten de machinetoegangsgegevens kiezen. Als u toegangsgegevens selecteert en 'melding bij opstarten' aanvinkt, worden de geselecteerde toegangsgegevens de standaardtoegangsgegevens en kunnen deze bij het opstarten gewijzigd worden." -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:88 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." msgstr "Kies uit de lijst mappen die in het basispad van het project gevonden zijn. Het basispad en de map van het draaiboek vormen samen het volledige pad dat gebruikt wordt op draaiboeken te vinden." -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "Items in lijst selecteren" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "Type taak selecteren" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: components/LaunchPrompt/steps/SurveyStep.js:174 +msgid "Select option(s)" +msgstr "" + +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "Periode selecteren" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "Rollen selecteren om toe te passen" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132 msgid "Select source path" msgstr "Bronpad selecteren" -#: screens/Dashboard/DashboardGraph.jsx:148 -#: screens/Dashboard/DashboardGraph.jsx:149 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "Status selecteren" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "Tags selecteren" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "Selecteer de uitvoeromgeving waarbinnen u deze opdracht wilt uitvoeren." -#: screens/Inventory/shared/SmartInventoryForm.jsx:90 +#: screens/Inventory/shared/SmartInventoryForm.js:89 msgid "Select the Instance Groups for this Inventory to run on." msgstr "Selecteer de instantiegroepen waar deze inventaris op uitgevoerd wordt." -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt." -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "Selecteer de instantiegroepen waar de organisatie op uitgevoerd wordt." -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "Selecteer de toepassing waartoe dit token zal behoren." -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "Selecteer de toegangsgegevens die u wilt gebruiken bij het aanspreken van externe hosts om de opdracht uit te voeren. Kies de toegangsgegevens die de gebruikersnaam en de SSH-sleutel of het wachtwoord bevatten die Ansible nodig heeft om aan te melden bij de hosts of afstand." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 -msgid "Select the default execution environment for this organization to run on." -msgstr "Selecteer de aangepaste virtuele Python-omgeving waarop deze organisatie moet worden uitgevoerd." - -#: screens/Template/shared/JobTemplateForm.jsx:322 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "Selecteer de uitvoeringsomgeving voor deze taaksjabloon." -#: components/Lookup/InventoryLookup.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:286 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." msgstr "Selecteer de inventaris met de hosts waarvan u wilt dat deze taak ze beheert." -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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 "Selecteer het inventarisbestand dat gesynchroniseerd moet worden door deze bron. U kunt kiezen uit het uitklapbare menu of een bestand invoeren in het invoerveld." -#: components/HostForm/HostForm.jsx:33 -#: components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "Selecteer de inventaris waartoe deze host zal behoren." -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: screens/Template/shared/JobTemplateForm.js:361 msgid "Select the playbook to be executed by this job." msgstr "Selecteer het draaiboek dat uitgevoerd moet worden door deze taak." -#: screens/Template/shared/JobTemplateForm.jsx:301 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "Selecteer het project dat het draaiboek bevat waarvan u wilt dat deze taak hem uitvoert." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "Selecteer het Ansible Automation Platform-abonnement dat u wilt gebruiken" -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "Selecteer {0}" -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:260 -#: components/AddRole/SelectRoleStep.jsx:27 -#: 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:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "Geselecteerd" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "Geselecteerde categorie" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:233 -msgid "Send a test log message to the configured log aggregator." -msgstr "Stuur een testlogboekbericht naar de geconfigureerde logboekaggregator." - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:93 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "Afzender e-mail" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "Afzender e-mailbericht" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "September" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "JSON-bestand service-account" -#: screens/Inventory/shared/InventorySourceForm.jsx:53 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "Waarde instellen voor dit veld" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "Stel in hoeveel dagen aan gegevens er moet worden bewaard." -#: screens/Setting/SettingList.jsx:121 +#: screens/Setting/SettingList.js:117 msgid "Set preferences for data collection, logos, and logins" msgstr "Stel voorkeuren in voor gegevensverzameling, logo's en aanmeldingen" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "Stel bronpad in op" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "Zet de instantie online of offline. Indien offline, zullen er geen taken aan deze instantie worden toegewezen." -#: screens/Application/shared/ApplicationForm.jsx:129 +#: screens/Application/shared/ApplicationForm.js:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "Ingesteld op openbaar of vertrouwelijk, afhankelijk van de beveiliging van het toestel van de klant." -#: components/Search/AdvancedSearch.jsx:98 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "Type instellen" -#: components/Search/AdvancedSearch.jsx:89 +#: components/Search/AdvancedSearch.js:298 +msgid "Set type disabled for related search field fuzzy searches" +msgstr "" + +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "Type instellen selecteren" -#: components/Search/AdvancedSearch.jsx:92 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "Typeahead type instellen" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "Zoom instellen op 100% en grafiek centreren" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "Categorie instellen" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "De instelling komt overeen met de fabrieksinstelling." -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "Naam instellen" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "Instellingen" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "Tonen" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:496 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "Wijzigingen tonen" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "Alle groepen tonen" -#: components/AdHocCommands/AdHocDetailsStep.jsx:201 -#: components/AdHocCommands/AdHocDetailsStep.jsx:202 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "Wijzigingen tonen" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "Beschrijving tonen" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "Minder tonen" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "Alleen wortelgroepen tonen" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "Aanmelden met Azure AD" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "Aanmelden met GitHub" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "Aanmelden met GitHub Enterprise" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "Aanmelden met GitHub Enterprise-organisaties" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "Aanmelden met GitHub Enterprise-teams" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "Aanmelden met GitHub-organisaties" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "Aanmelden met GitHub-teams" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "Aanmelden met Google" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "Aanmelden met SAML" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "Aanmelden met SAML {samlIDP}" -#: components/Search/Search.jsx:177 -#: components/Search/Search.jsx:178 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "Eenvoudige sleutel selecteren" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:235 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:310 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:536 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "Tags overslaan" -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7034,7 +7192,7 @@ msgid "" "of tags." msgstr "Tags overslaan is nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt overslaan. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie voor meer informatie over het gebruik van tags." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -7042,265 +7200,271 @@ msgid "" "documentation for details on the usage of tags." msgstr "Tags overslaan is nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt overslaan. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie van Ansible Tower voor meer informatie over het gebruik van tags." -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "Overgeslagen" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "Slack" -#: screens/Host/HostList/SmartInventoryButton.jsx:19 -#: screens/Host/HostList/SmartInventoryButton.jsx:38 -#: screens/Host/HostList/SmartInventoryButton.jsx:42 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "Smart-inventaris" -#: screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "Smart-inventaris niet gevonden." -#: components/Lookup/HostFilterLookup.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "Smart-hostfilter" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "Smart-inventaris" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "Sommige van de vorige stappen bevatten fouten" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Host/HostList/SmartInventoryButton.js:12 +msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "Er is iets misgegaan met het verzoek om deze toegangsgegevens en metadata te testen." -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "Er is iets misgegaan..." -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "Sorteren" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "Vraagvolgorde sorteren" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:84 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "Bron" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:130 -#: components/PromptDetail/PromptProjectDetail.jsx:79 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:75 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:332 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "Vertakking broncontrole" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" msgstr "Vertakking/tag/binding broncontrole" -#: components/PromptDetail/PromptProjectDetail.jsx:83 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "Toegangsgegevens bronbeheer" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "Type toegangsgegevens bronbeheer" -#: components/PromptDetail/PromptProjectDetail.jsx:80 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:151 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "Refspec broncontrole" -#: components/PromptDetail/PromptProjectDetail.jsx:75 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:146 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 +msgid "Source Control Revision" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "Type broncontrole" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "URL broncontrole" -#: components/JobList/JobList.jsx:180 -#: components/JobList/JobListItem.jsx:33 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "Update broncontrole" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "Brontelefoonnummer" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:168 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "Bronvariabelen" -#: components/JobList/JobListItem.jsx:170 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "Taak bronworkflow" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "Vertakking broncontrole" -#: screens/Inventory/shared/InventorySourceForm.jsx:160 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "Broninformatie" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "Brontelefoonnummer" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:249 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "Bronvariabelen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "Afkomstig uit een project" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "Bronnen" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." msgstr "Specificeer HTTP-koppen in JSON-formaat. Raadpleeg de documentatie van Ansible Tower voor voorbeeldsyntaxis." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." msgstr "Kies een berichtkleur. Mogelijke kleuren zijn kleuren uit de hexidecimale kleurencode (bijvoorbeeld: #3af of #789abc)." -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "Geef een bereik op voor de toegang van de token" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "Specificeer de voorwaarden waaronder dit knooppunt moet worden uitgevoerd" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "Standaardfout" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "Standaardoutput" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "Tabblad Standaardfout" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "Tabblad Standaardoutput" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "Starten" -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:83 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "Starttijd" -#: components/Schedule/shared/ScheduleForm.jsx:120 -msgid "Start date/time" -msgstr "Startdatum/-tijd" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "Startbericht" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:388 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "Body startbericht" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "Start het synchronisatieproces" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "Start synchronisatie bron" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "Gestart" -#: components/JobList/JobList.jsx:193 -#: components/JobList/JobList.jsx:214 -#: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "Status" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "Indienen" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7308,192 +7472,198 @@ msgid "" "the revision specified by the main project.\n" "This is equivalent to specifying the --remote\n" "flag to git submodule update." -msgstr "Submodules volgen de laatste binding op\n" +msgstr "" +"Submodules volgen de laatste binding op\n" "hun hoofdvertakking (of een andere vertakking die is gespecificeerd in\n" ".gitmodules). Als dat niet zo is, dan worden de submodules bewaard tijdens de revisie die door het hoofdproject gespecificeerd is.\n" "Dit is gelijk aan het specificeren van de vlag --remote bij de update van de git-submodule." -#: screens/Setting/SettingList.jsx:131 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "Abonnement" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "Details abonnement" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "Abonnementenbeheer" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "Abonnementsmanifest" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "Modus Abonnement selecteren" -#: screens/Setting/SettingList.jsx:136 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "Abonnementsinstellingen" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "Type abonnement" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "Tabel Abonnementen" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "Subversie" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "Geslaagd" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:397 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "Succesbericht" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:406 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "Body succesbericht" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "Geslaagd" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "Succesvolle taken" -#: screens/Project/ProjectList/ProjectListItem.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "Succesvol gekopieerd naar klembord!" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "Zon" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "Zondag" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:168 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "Vragenlijst" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "Vragenlijst" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "Voorbeeld van vragenlijst" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "Vragenlijst schakelen" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "Modus Voorbeeld van vragenlijst" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "Vragenlijstvragen" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:111 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "Synchroniseren" -#: screens/Project/ProjectList/ProjectListItem.jsx:187 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "Project synchroniseren" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "Alles synchroniseren" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "Alle bronnen synchroniseren" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "Synchronisatiefout" -#: screens/Project/ProjectList/ProjectListItem.jsx:160 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "Synchroniseren voor revisie" -#: screens/Setting/SettingList.jsx:101 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Project/ProjectList/ProjectListItem.js:120 +msgid "Syncing" +msgstr "" + +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "Systeem" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 msgid "System Administrator" msgstr "Systeembeheerder" -#: screens/User/UserDetail/UserDetail.jsx:44 -#: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:34 +#: screens/User/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "Systeemcontroleur" -#: screens/Job/JobOutput/JobOutput.jsx:702 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "Systeemwaarschuwing" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "Systeembeheerders hebben onbeperkte toegang tot alle bronnen." -#: screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "TACACS+" -#: screens/Setting/SettingList.jsx:84 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "TACACS+ instellingen" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "Tabbladen" -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7502,7 +7672,7 @@ msgid "" "the usage of tags." msgstr "Tags zijn nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt uitvoeren. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie voor meer informatie over het gebruik van tags." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -7510,198 +7680,196 @@ msgid "" "documentation for details on the usage of tags." msgstr "Tags zijn nuttig wanneer u een groot draaiboek heeft en specifieke delen van het draaiboek of een taak wilt uitvoeren. Gebruik een komma om meerdere tags van elkaar te scheiden. Raadpleeg de documentatie van Ansible Tower voor meer informatie over het gebruik van tags." -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:132 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "Tags voor de melding" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "Tags voor de melding (optioneel)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:175 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "Doel-URL" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "Taak" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "Aantal taken" -#: screens/Job/JobOutput/JobOutput.jsx:693 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "Taak gestart" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "Taken" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "Team" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "Teamrollen" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "Taak niet gevonden." -#: components/AddRole/AddResourceRole.jsx:208 -#: components/AddRole/AddResourceRole.jsx:209 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: 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: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:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 -#: util/getRelatedResourceDeleteDetails.js:180 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 +#: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "Teams" -#: screens/Template/Template.jsx:184 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "Sjabloon niet gevonden." -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -msgid "Template type" -msgstr "Type sjabloon" - -#: components/TemplateList/TemplateList.jsx:182 -#: components/TemplateList/TemplateList.jsx:239 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 -#: screens/Template/Templates.jsx:16 -#: util/getRelatedResourceDeleteDetails.js:224 -#: util/getRelatedResourceDeleteDetails.js:281 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 +#: util/getRelatedResourceDeleteDetails.js:217 +#: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "Sjablonen" -#: 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 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "Test" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "Test externe inloggegevens" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "Testbericht" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -msgid "Test logging" -msgstr "Logboekregistratie testen" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "Testbericht" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "Test geslaagd" -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "Tekst" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "Tekstgebied" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "Tekstgebied" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "De waarde is niet gevonden. Voer een geldige waarde in of selecteer er een." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr "De" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "De uitvoeringsomgeving die moet worden gebruikt wanneer er geen is geconfigureerd voor een taaksjabloon." -#: screens/Application/shared/ApplicationForm.jsx:87 +#: screens/Application/shared/ApplicationForm.js:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "Het type toekenning dat de gebruiker moet gebruiken om tokens te verkrijgen voor deze toepassing" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." msgstr "De tijd (in seconden) voordat de e-mailmelding de host probeert te bereiken en een time-out oplevert. Varieert van 1 tot 120 seconden." -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" "timeout." msgstr "De tijd (in seconden) die het heeft geduurd voordat de taak werd geannuleerd. Standaard 0 voor geen taak time-out." -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." msgstr "De basis-URL van de Grafana-server - het /api/annotations-eindpunt wordt automatisch toegevoegd aan de basis-URL voor Grafana." -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "De uitvoeringsomgeving die zal worden gebruikt voor taken binnen deze organisatie. Dit wordt gebruikt als terugvalpunt wanneer er geen uitvoeringsomgeving expliciet is toegewezen op project-, taaksjabloon- of workflowniveau." -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "De uitvoeringsomgeving die zal worden gebruikt voor taken die dit project gebruiken. Dit wordt gebruikt als terugvalpunt wanneer er geen uitvoeringsomgeving expliciet is toegewezen op taaksjabloon- of workflowniveau." -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 +msgid "" +"The execution environment that will be used when launching\n" +"this job template. The resolved execution environment can be overridden by\n" +"explicitly assigning a different one to this job template." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." msgstr "De eerste haalt alle referenties op. De tweede haalt het Github pullverzoek nummer 62 op, in dit voorbeeld moet de vertakking `pull/62/head` zijn." -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 msgid "The full image location, including the container registry, image name, and version tag." msgstr "De volledige imagelocatie, inclusief het containerregister, de imagenaam en de versietag." -#: screens/Organization/shared/OrganizationForm.jsx:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "Maximumaantal hosts dat beheerd mag worden door deze organisatie. De standaardwaarde is 0, wat betekent dat er geen limiet is. Raadpleeg de Ansible-documentatie voor meer informatie." -#: screens/Template/shared/JobTemplateForm.jsx:428 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -7710,300 +7878,303 @@ msgid "" "with a change to" msgstr "Het aantal parallelle of gelijktijdige processen dat tijdens de uitvoering van het draaiboek gebruikt wordt. Een lege waarde, of een waarde minder dan 1 zal de Ansible-standaard gebruiken die meestal 5 is. Het standaard aantal vorken kan overgeschreven worden met een wijziging naar" -#: components/AdHocCommands/AdHocDetailsStep.jsx:188 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "Het aantal parallelle of gelijktijdige processen dat gebruikt wordt bij het uitvoeren van het draaiboek. Als u geen waarde invoert, wordt de standaardwaarde van het Ansible-configuratiebestand gebruikt. U vindt meer informatie" -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "De door u opgevraagde pagina kan niet worden gevonden." -#: components/AdHocCommands/AdHocDetailsStep.jsx:168 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "Het patroon dat gebruikt wordt om hosts in de inventaris te targeten. Door het veld leeg te laten, worden met alle en * alle hosts in de inventaris getarget. U kunt meer informatie vinden over hostpatronen van Ansible" -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/Project/ProjectList/ProjectListItem.js:118 +msgid "The project is currently syncing and the revision will be available after the sync is complete." +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 +msgid "The project must be synced before a revision is available." +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:128 +msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "De aan dit knooppunt gekoppelde bron is verwijderd." -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." msgstr "De voorgestelde indeling voor namen van variabelen: kleine letters en gescheiden door middel van een underscore (bijvoorbeeld foo_bar, user_id, host_name etc.) De naam van een variabele mag geen spaties bevatten." -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 -msgid "The tower instance group cannot be deleted." -msgstr "De instantiegroep van Tower kan niet worden verwijderd." - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" "assigned to other projects. Create a new directory there and make\n" "sure the playbook files can be read by the \"awx\" system user,\n" -"or have {brandName} directly retrieve your playbooks from\n" +"or have {0} directly retrieve your playbooks from\n" "source control using the Source Control Type option above." -msgstr "Er zijn geen draaiboekmappen in {project_base_dir} beschikbaar.\n" -"Die map leeg of alle inhoud ervan is al\n" -"toegewezen aan andere projecten. Maak daar een nieuwe directory en zorg ervoor dat de draaiboekbestanden kunnen worden gelezen door de 'awx'-systeemgebruiker,\n" -"of laat {brandName} uw draaiboeken direct ophalen uit broncontrole met behulp van de optie Type broncontrole hierboven." +msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:31 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "Er moet een waarde zijn in ten minste één input" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "Er is een probleem met inloggen. Probeer het opnieuw." -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "Er is een fout opgetreden bij het laden van deze inhoud. Laad de pagina opnieuw." -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "Er is een fout opgetreden bij het parseren van het bestand. Controleer de opmaak van het bestand en probeer het opnieuw." -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "Er is een fout opgetreden bij het opslaan van de workflow." -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -msgid "There was an error testing the log aggregator." -msgstr "Er is een fout opgetreden bij het testen van de log aggregator." +#: components/AdHocCommands/AdHocDetailsStep.js:68 +msgid "These are the modules that {0} supports running commands against." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -msgid "These are the modules that {brandName} supports running commands against." -msgstr "Dit zijn de modules waar {brandName} commando's tegen kan uitvoeren." - -#: components/AdHocCommands/AdHocDetailsStep.jsx:146 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "Dit zijn de verbositeitsniveaus voor standaardoutput van de commando-uitvoering die worden ondersteund." -#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "Deze argumenten worden gebruikt met de gespecificeerde module." -#: components/AdHocCommands/AdHocDetailsStep.jsx:118 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "Deze argumenten worden gebruikt met de gespecificeerde module. U kunt informatie over {0} vinden door te klikken op" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "Derde" -#: screens/Template/shared/JobTemplateForm.jsx:153 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "Dit project moet worden bijgewerkt" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "Met deze actie wordt het volgende verwijderd:" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "Deze actie ontkoppelt alle rollen voor deze gebruiker van de geselecteerde teams." -#: screens/Team/TeamRoles/TeamRolesList.jsx:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "Deze actie ontkoppelt de volgende rol van {0}:" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "Deze actie ontkoppelt het volgende:" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "Deze containergroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:282 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "Deze toegangsgegevens worden momenteel door andere bronnen gebruikt. Weet u zeker dat u ze wilt verwijderen?" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "Dit type toegangsgegevens wordt momenteel gebruikt door sommige toegangsgegevens en kan niet worden verwijderd" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." -msgstr "Deze gegevens worden gebruikt om\n" +msgstr "" +"Deze gegevens worden gebruikt om\n" "toekomstige versies van de software te verbeteren en om\n" "Insights for Ansible Automation Platform te bieden." -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" "streamline customer experience and success." msgstr "Deze gegevens worden gebruikt om toekomstige versies van de Tower-software en de ervaring en uitkomst voor klanten te verbeteren." -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u deze wilt verwijderen?" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "Dit veld wordt genegeerd, tenzij er een Ingeschakelde variabele is ingesteld. Als de ingeschakelde variabele overeenkomt met deze waarde, wordt de host bij het importeren ingeschakeld." -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "Dit veld mag niet leeg zijn" -#: util/validators.jsx:100 +#: util/validators.js:121 msgid "This field must be a number" msgstr "Dit veld moet een getal zijn" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 msgid "This field must be a number and have a value between {0} and {1}" msgstr "Dit veld moet een getal zijn en een waarde hebben tussen {0} en {1}" -#: util/validators.jsx:40 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "Dit veld moet een getal zijn en een waarde hebben tussen {min} en {max}" -#: util/validators.jsx:140 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "Dit veld moet een reguliere expressie zijn" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: util/validators.jsx:84 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "Dit veld moet een geheel getal zijn" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "Dit veld moet uit ten minste {0} tekens bestaan" -#: util/validators.jsx:31 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "Dit veld moet uit ten minste {min} tekens bestaan" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "Dit veld moet groter zijn dan 0" -#: 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 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "Dit veld mag niet leeg zijn" -#: util/validators.jsx:74 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "Dit veld mag geen spaties bevatten" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "Dit veld mag niet langer zijn dan {0} tekens" -#: util/validators.jsx:22 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "Dit veld mag niet langer zijn dan {max} tekens" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "Dit veld wordt met behulp van de opgegeven referentie opgehaald uit een extern geheimbeheersysteem." -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "Deze instantiegroep wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -msgstr "Deze inventaris wordt toegepast op alle taaksjabloonknooppunten binnen deze workflow ({0}) die vragen naar een inventaris." +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "Deze inventaris wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "Deze inventarisbron wordt momenteel door andere bronnen gebruikt die erop vertrouwen. Weet u zeker dat u hem wilt verwijderen?" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "Dit is de enige keer dat het cliëntgeheim wordt getoond." -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "Dit is de enige keer dat de tokenwaarde en de bijbehorende ververste tokenwaarde worden getoond." -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "Deze taaksjabloon wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u hem wilt verwijderen?" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:166 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "Deze organisatie wordt momenteel door andere bronnen gebruikt. Weet u zeker dat u haar wilt verwijderen?" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:225 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "Dit project wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u het wilt verwijderen?" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "Dit project wordt momenteel gesynchroniseerd en er kan pas op worden geklikt nadat het synchronisatieproces is voltooid" -#: components/Schedule/ScheduleList/ScheduleList.jsx:122 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "In dit schema ontbreekt een Inventaris" -#: components/Schedule/ScheduleList/ScheduleList.jsx:147 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "In dit schema ontbreken de vereiste vragenlijstwaarden" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:64 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "Deze stap bevat fouten" -#: screens/User/shared/UserForm.jsx:146 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "Deze waarde komt niet overeen met het wachtwoord dat u eerder ingevoerd heeft. Bevestig dat wachtwoord." -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" msgstr "Hiermee worden alle configuratiewaarden op deze pagina teruggezet op de fabrieksinstellingen. Weet u zeker dat u verder wilt gaan?" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "Er zijn voor deze workflow geen knooppunten geconfigureerd." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "Deze sjabloon voor workflowtaken wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u hem wilt verwijderen?" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "Do" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "Donderdag" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "Tijd" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8013,7 +8184,7 @@ msgid "" "performed." msgstr "Tijd in seconden waarmee een project actueel genoemd kan worden. Tijdens taken in uitvoering en terugkoppelingen wil het taaksysteem de tijdstempel van de meest recente projectupdate bekijken. Indien dit ouder is dan de Cache-timeout wordt het project niet gezien als actueel en moet er een nieuwe projectupdate uitgevoerd worden." -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -8022,951 +8193,967 @@ msgid "" "inventory sync will be performed." msgstr "Tijd in seconden waarmee een inventarissynchronisatie actueel genoemd kan worden. Tijdens taken in uitvoering en terugkoppelingen zal het taaksysteem de tijdstempel van de meest recente synchronisatie bekijken. Indien dit ouder is dan de Cache-timeout wordt het project niet gezien als actueel en moet er een nieuwe inventarissynchronisatie uitgevoerd worden." -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "Er is een time-out opgetreden" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:103 -#: 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:489 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "Time-out" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "Time-out minuten" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "Time-out seconden" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "Legenda wisselen" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "Wachtwoord wisselen" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "Gereedschap wisselen" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "Gebeurtenislijnen uitvouwen/inklappen wisselen" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "Host wisselen" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "Instantie wisselen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "Legenda wisselen" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "Berichtgoedkeuringen wisselen" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "Berichtstoring wisselen" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "Berichtstart wisselen" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "Berichtsucces wisselen" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "Schema wisselen" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "Gereedschap wisselen" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "Token" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "Tokeninformatie" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "Token niet gevonden." -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -msgid "Token type" -msgstr "Type token" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:106 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "Tokens" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "Gereedschap" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "Bovenkant paginering" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "Totale taken" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "Totaalaantal knooppunten" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:174 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "Totale taken" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "Submodules tracken" -#: components/PromptDetail/PromptProjectDetail.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:75 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "Submodules laatste binding op vertakking tracken" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "Proefperiode" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "True" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "Di" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "Dinsdag" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:215 -#: components/JobList/JobListItem.jsx:82 -#: 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:162 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:196 -#: components/TemplateList/TemplateList.jsx:221 -#: components/TemplateList/TemplateListItem.jsx:152 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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: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:241 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: 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: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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "Soort" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "Soortdetails" -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -msgid "Type answer then click checkbox on right to select answer as default." -msgstr "Typ het antwoord en klik dan op het selectievakje rechts om het antwoord als standaard te selecteren." +#: screens/Template/Survey/MultipleChoiceField.js:61 +msgid "" +"Type answer then click checkbox on right to select answer as\n" +"default." +msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:111 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "" + +#: components/HostForm/HostForm.js:62 +msgid "Unable to change inventory on a host" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "Niet beschikbaar" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "Ongedaan maken" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Unfollow" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "Onbeperkt" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "Onbereikbaar" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "Aantal onbereikbare hosts" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "Hosts onbereikbaar" -#: util/dates.jsx:89 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "Tekenreeks niet-herkende dag" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "Modus Niet-opgeslagen wijzigingen" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "Herziening updaten bij opstarten" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -msgid "Update on Launch" -msgstr "Update bij opstarten" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -msgid "Update on Project Update" -msgstr "Update voor projectupdate" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:160 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "Update bij opstarten" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:170 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "Update voor projectupdate" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "Update-opties" -#: screens/Setting/SettingList.jsx:91 -msgid "Update settings pertaining to Jobs within {brandName}" -msgstr "Werk de instellingen bij die betrekking hebben tot taken binnen {brandName}" +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 +msgid "Update revision on job launch" +msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Setting/SettingList.js:87 +msgid "Update settings pertaining to Jobs within {0}" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "Webhooksleutel bijwerken" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "Bijwerken" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr ".zip-bestand uploaden" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 een Red Hat-abonnementsmanifest met uw abonnement. Ga naar <0>abonnementstoewijzingen op het Red Hat-klantenportaal om uw abonnementsmanifest te genereren." -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -msgid "Use Fact Storage" -msgstr "Feitenopslag gebruiken" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "SSL gebruiken" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "TLS gebruiken" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" msgstr "Gebruik aangepaste berichten om de inhoud te wijzigen van berichten die worden verzonden wanneer een taak start, slaagt of mislukt. Gebruik accolades om informatie over de taak te openen:" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:107 +#: screens/InstanceGroup/Instances/InstanceList.js:215 +msgid "Used Capacity" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "Gebruikte capaciteit" -#: components/AppContainer/PageHeaderToolbar.jsx:130 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "Gebruiker" -#: components/AppContainer/PageHeaderToolbar.jsx:158 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "Gebruikersdetails" -#: screens/Setting/SettingList.jsx:120 -#: screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "Gebruikersinterface" -#: screens/Setting/SettingList.jsx:125 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "Instellingen gebruikersinterface" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "Gebruikersrollen" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:129 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "Soort gebruiker" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "Gebruikersanalyses" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "Analyse van gebruikers en Insights" -#: components/AppContainer/PageHeaderToolbar.jsx:151 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "Gebruikersdetails" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "Gebruiker niet gevonden." -#: screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "Gebruikerstokens" -#: components/AddRole/AddResourceRole.jsx:124 -#: components/AddRole/AddResourceRole.jsx:139 -#: components/ResourceAccessList/ResourceAccessList.jsx:127 -#: components/ResourceAccessList/ResourceAccessList.jsx:180 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:78 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:180 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:230 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 -#: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:122 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:63 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "Gebruikersnaam" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "Gebruikersnaam/wachtwoord" -#: components/AddRole/AddResourceRole.jsx:198 -#: components/AddRole/AddResourceRole.jsx:199 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:117 -#: screens/User/UserList/UserList.jsx:157 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "Gebruikers" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:99 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:221 -#: screens/Template/shared/JobTemplateForm.jsx:412 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "Variabelen" -#: screens/Job/JobOutput/JobOutput.jsx:694 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "Variabelen gevraagd" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "Wachtwoord kluis" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "Wachtwoord kluis | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:699 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "Uitgebreid" -#: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:100 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:462 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "Verbositeit" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "Versie" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -msgid "View Activity Stream settings" -msgstr "Instellingen activiteitenlogboek weergeven" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "Azure AD-instellingen weergeven" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "Details toegangsgegevens weergeven" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "Details weergeven" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "GitHub-instellingen weergeven" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "Instellingen Google OAuth 2.0 weergeven" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "Hostdetails weergeven" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:169 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "Inventarisdetails weergeven" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "Inventarisgroepen weergeven" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "Hostdetails van inventaris weergeven" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "JSON-voorbeelden op <0>www.json.org weergeven" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "Taakdetails weergeven" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "Taakinstellingen weergeven" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "LDAP-instellingen weergeven" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "Logboekregistratie-instellingen weergeven" -#: screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 +msgid "View Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "Diverse systeeminstellingen weergeven" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "Organisatiedetails weergeven" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "Projectdetails weergeven" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "RADIUS-instellingen weergeven" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "SAML-instellingen weergeven" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "Schema's weergeven" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "Instellingen weergeven" -#: screens/Template/Template.jsx:168 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "Vragenlijst weergeven" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "TACACS+ instellingen weergeven" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "Teamdetails weergeven" -#: screens/Template/Template.jsx:265 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "Sjabloondetails weergeven" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "Tokens weergeven" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "Gebruikersdetails weergeven" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "Instellingen gebruikersinterface weergeven" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "Details workflowgoedkeuring weergeven" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "YAML-voorbeelden weergeven op <0>docs.ansible.com" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "Activiteitenlogboek weergeven" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "Geef alle toegangsgegevens weer." -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "Geef alle hosts weer." -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:97 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "Geef alle inventarissen weer." -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "Geef alle inventarishosts weer." -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "Alle taken weergeven" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "Geef alle taken weer." -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "Geef alle berichtsjablonen weer." -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "Geef alle organisaties weer." -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "Geef alle projecten weer." -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "Geef alle teams weer." -#: screens/Template/Template.jsx:185 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "Geef alle sjablonen weer." -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "Geef alle gebruikers weer." -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "Geef alle workflowgoedkeuringen weer." -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "Geef alle toepassingen weer." -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "Alle typen toegangsgegevens weergeven" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "Alle uitvoeringsomgevingen weergeven" -#: screens/InstanceGroup/ContainerGroup.jsx:83 -#: screens/InstanceGroup/InstanceGroup.jsx:89 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "Alle instantiegroepen weergeven" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "Alle beheertaken weergeven" -#: screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "Alle instellingen weergeven" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "Geef alle tokens weer." -#: screens/Setting/SettingList.jsx:132 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "Uw abonnementsgegevens weergeven en bewerken" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "Evenementinformatie weergeven" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "Details inventarisbron weergeven" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "Taak {0} weergeven" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "Details knooppunt weergeven" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 msgid "View smart inventory host details" msgstr "Hostdetails Smart-inventaris weergeven" -#: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "Weergaven" -#: components/TemplateList/TemplateListItem.jsx:157 -#: components/TemplateList/TemplateListItem.jsx:163 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "Visualizer" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "WAARSCHUWING:" -#: components/JobList/JobList.jsx:198 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "Wachten" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:701 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "Waarschuwing" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "Waarschuwing: niet-opgeslagen wijzigingen" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "We waren niet in staat om de aan deze account gekoppelde licenties te lokaliseren." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "We waren niet in staat om de aan deze account gekoppelde abonnementen te lokaliseren." -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:249 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "Webhook toegangsgegevens" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "Toegangsgegevens Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "Webhooksleutel" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "Webhookservice" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "Webhook-URL" -#: screens/Template/shared/JobTemplateForm.jsx:655 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "Webhookdetails" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Webhookservices kunnen taken met deze sjabloon voor workflowtaken lanceren door het verzenden van een POST-verzoek naar deze URL." -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "Webhookservices kunnen dit gebruiken als een gedeeld geheim." -#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 +msgid "Webhooks" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "Wo" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "Woensdag" -#: components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "Week" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "Doordeweeks" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "Weekenddag" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." -msgstr "Welkom bij Red Hat Ansible Automation Platform! \n" +msgstr "" +"Welkom bij Red Hat Ansible Automation Platform! \n" "Volg de onderstaande stappen om uw abonnement te activeren." -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "Welkom bij {brandName}!" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:150 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" "external source." msgstr "Als dit vakje niet aangevinkt is, worden lokale variabelen samengevoegd met de variabelen die aangetroffen zijn in de externe bron." -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." msgstr "Als dit vakje niet aangevinkt is, worden lokale onderliggende hosts en groepen die niet aangetroffen zijn in de externe bron niet behandeld in het synchronisatieproces van de inventaris." -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "Workflow" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "Workflowgoedkeuring" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "Workflowgoedkeuring niet gevonden." -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "Workflowgoedkeuringen" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "Workflowtaak" -#: components/JobList/JobListItem.jsx:158 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 -#: util/getRelatedResourceDeleteDetails.js:111 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 +#: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "Workflowtaaksjabloon" -#: util/getRelatedResourceDeleteDetails.js:121 -#: util/getRelatedResourceDeleteDetails.js:163 -#: util/getRelatedResourceDeleteDetails.js:266 +#: util/getRelatedResourceDeleteDetails.js:114 +#: util/getRelatedResourceDeleteDetails.js:156 +#: util/getRelatedResourceDeleteDetails.js:259 msgid "Workflow Job Template Nodes" msgstr "Sjabloonknooppunten workflowtaak" -#: util/getRelatedResourceDeleteDetails.js:146 +#: util/getRelatedResourceDeleteDetails.js:139 msgid "Workflow Job Templates" msgstr "Workflowtaaksjablonen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "Workflowlink" -#: components/TemplateList/TemplateList.jsx:200 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "Workflowsjabloon" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:433 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "Workflow goedgekeurd bericht" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:445 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "Workflow goedgekeurde berichtbody" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:457 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "Workflow geweigerd bericht" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:469 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "Workflow geweigerde berichtbody" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "Workflowdocumentatie" @@ -8974,493 +9161,450 @@ msgstr "Workflowdocumentatie" msgid "Workflow job templates" msgstr "Workflowtaaksjablonen" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "Modus Workflowlink" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "Modis Weergave workflowknooppunt" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:481 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "Bericht Workflow in behandeling" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:493 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "Workflow Berichtenbody in behandeling" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:505 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "Workflow Time-outbericht" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "Workflow Berichtbody voor time-out" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "Schrijven" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "YAML:" -#: components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "Jaar" -#: components/Search/Search.jsx:256 +#: components/Search/Search.js:259 msgid "Yes" msgstr "Ja" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "U kunt niet reageren op de volgende workflowgoedkeuringen: {itemsUnableToApprove}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "U kunt niet reageren op de volgende workflowgoedkeuringen: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:156 +#: components/Lookup/MultiCredentialsLookup.js: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 "U kunt niet meerdere kluisreferenties met delfde kluis-ID selecteren. Als u dat wel doet, worden de andere met delfde kluis-ID automatisch gedeselecteerd." -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:97 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "U heeft geen rechten om de volgende groepen te verwijderen: {itemsUnableToDelete}" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "U heeft geen toestemming om {pluralizedItemName} te verwijderen: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 -msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -msgstr "U heeft geen toestemming om {pluralizedItemName} te verwijderen: {itemsUnableToDelete}." - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "U hebt geen toestemming om het volgende te ontkoppelen: {itemsUnableToDisassociate}" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" -msgstr "U kunt een aantal mogelijke variabelen in het\n" +msgstr "" +"U kunt een aantal mogelijke variabelen in het\n" "bericht toepassen. Voor meer informatie, raadpleeg de" -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "Uw sessie is verlopen. Log in om verder te gaan waar u gebleven was." -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "Uw sessie is bijna afgelopen" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "Inzoomen" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "Uitzoomen" -#: screens/Template/shared/JobTemplateForm.jsx:753 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js:152 msgid "a new webhook key will be generated on save." msgstr "Er wordt een nieuwe webhooksleutel gegenereerd bij het opslaan." -#: screens/Template/shared/JobTemplateForm.jsx:750 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js:142 msgid "a new webhook url will be generated on save." msgstr "Er wordt een nieuwe webhook-URL gegenereerd bij het opslaan." -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 +#: screens/Template/Survey/SurveyListItem.js:157 msgid "actions" msgstr "acties" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "en klik op Herziening updaten bij opstarten" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "goedgekeurd" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "merklogo" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "verwijderen annuleren" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -msgid "capacity adjustment" -msgstr "capaciteitsaanpassing" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:240 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "opdracht" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "verwijderen bevestigen" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "loskoppelen bevestigen" -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -msgid "copy to clipboard disabled" -msgstr "kopiëren naar klembord uitgeschakeld" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "verwijderingsfout" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "geweigerd" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "loskoppelen" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "documentatie" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: 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/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "bewerken" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "versleuteld" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -msgid "expiration" -msgstr "vervaldatum" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "voor meer info." -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "voor meer informatie." -#: components/AdHocCommands/AdHocDetailsStep.jsx:174 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "hier" -#: components/AdHocCommands/AdHocDetailsStep.jsx:125 -#: components/AdHocCommands/AdHocDetailsStep.jsx:194 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "hier." -#: components/Lookup/HostFilterLookup.jsx:337 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "hosts" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -msgid "instance counts" -msgstr "aantal instanties" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -msgid "instance group used capacity" -msgstr "gebruikte capaciteit instantiegroep" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -msgid "instance host name" -msgstr "instantie hostnaam" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -msgid "instance type" -msgstr "instantietype" - -#: components/Lookup/HostListItem.jsx:30 -msgid "inventory" -msgstr "Inventaris" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "items" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "ldap-gebruiker" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "inlogtype" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "min" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "omlaag verplaatsen" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "omhoog verplaatsen" -#: components/Lookup/HostListItem.jsx:23 -msgid "name" -msgstr "naam" - -#: screens/Template/Survey/MultipleChoiceField.jsx:73 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "nieuwe keuze" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "van" -#: components/AdHocCommands/AdHocDetailsStep.jsx:238 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "optie aan de" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "pagina" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "pagina's" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "per pagina" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "taken opnieuw starten" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -msgid "scope" -msgstr "bereik" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "sec" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "seconden" -#: components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "module selecteren" -#: components/AdHocCommands/AdHocDetailsStep.jsx:135 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "verbositeit selecteren" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "sociale aanmelding" -#: screens/Template/shared/JobTemplateForm.jsx:344 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "Broncontrolevertakking" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "systeem" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -msgid "team name" -msgstr "teamnaam" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "time-out" -#: components/AdHocCommands/AdHocDetailsStep.jsx:218 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "wijzigingen wisselen" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -msgid "token name" -msgstr "tokennaam" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "bijgewerkt" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "webhooksleutel taaksjabloon voor workflows" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "{0, plural, one {Weet u zeker dat u de groep hieronder wilt verwijderen?} other {Weet u zeker dat u de groepen hieronder wilt verwijderen?}}" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "{0, plural, one {Groep verwijderen?} other {Groep verwijderen?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 +msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.js:236 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 {De inventaris zal de status 'in afwachting' hebben totdat het laatste verwijderproces verwerkt is.} other {De inventarissen zullen de status 'in afwachting' hebben totdat het laatste verwijderproces verwerkt is.}}" -#: components/JobList/JobList.jsx:242 +#: components/JobList/JobList.js:254 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 {De geselecteerde taak kan niet worden verwijderd wegens onvoldoende rechten of een lopende taakstatus} other {De geselecteerde taken kunnen niet worden verwijderd wegens onvoldoende rechten of een lopende taakstatus}}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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 {Deze goedkeuring kan niet worden verwijderd wegens onvoldoende rechten of een taakstatus 'in afwachting'}} other {Deze goedkeuringen kunnen niet worden verwijderd wegens onvoldoende rechten of een taakstatus 'in afwachting'}}" -#: screens/Credential/CredentialList/CredentialList.jsx:181 +#: screens/Credential/CredentialList/CredentialList.js:178 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 {Deze inloggegevens worden momenteel gebruikt door andere bronnen. Weet u zeker dat u ze wilt verwijderen?} other {Het verwijderen van deze referenties kan impact hebben op andere bronnen die er op vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:170 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 {Dit type toegangsgegevens wordt momenteel gebruikt door sommige toegangsgegevens en kan niet worden verwijderd.} other {Typen toegangsgegevens die worden gebruikt door toegangsgegevens kunnen niet worden verwijderd. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:187 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 {Deze uitvoeringsomgeving wordt momenteel gebruikt door andere bronnen. Weet u zeker dat je deze wilt verwijderen?} other {Deze uitvoeringsomgevingen kunnen in gebruik zijn door andere bronnen die er op vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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 {Deze instantiegroep wordt momenteel door andere bronnen gebruikt. Weet je zeker dat u deze wilt verwijderen?} other {Het verwijderen van deze instantiegroepen kan gevolgen hebben voor andere bronnen die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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 {Deze inventaris wordt momenteel gebruikt door sommige sjablonen. Weet u zeker dat je hem wilt verwijderen?} other {Het verwijderen van deze inventarissen kan gevolgen hebben voor sommige sjablonen die erop vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.js:186 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 {Deze inventarisbron wordt momenteel gebruikt door andere bronnen die erop vertrouwen. Weet u zeker dat u deze wilt verwijderen?} other {Het verwijderen van deze inventarisbronnen kan impact hebben op andere bronnen die er op vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/Organization/OrganizationList/OrganizationList.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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 {Deze organisatie wordt momenteel door andere bronnen gebruikt. Weet je zeker dat u deze wilt verwijderen?} other {Het verwijderen van deze organisaties kan gevolgen hebben voor andere bronnen die ervan afhankelijk zijn. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: screens/Project/ProjectList/ProjectList.jsx:198 +#: screens/Project/ProjectList/ProjectList.js:241 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 {Dit project wordt momenteel gebruikt door andere bronnen. Weet u zeker dat u het wilt verwijderen?} other {Het verwijderen van deze projecten kan impact hebben op andere bronnen die er op vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: components/TemplateList/TemplateList.jsx:242 +#: components/TemplateList/TemplateList.js:251 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 {Deze sjabloon wordt momenteel gebruikt door sommige workflowknooppunten. Weet u zeker dat u deze wilt verwijderen?} other {Het verwijderen van deze sjablonen kan gevolgen hebben voor sommige workflowknooppunten die erop vertrouwen. Weet u zeker dat u ze toch wilt verwijderen?}}" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {U kunt de volgende taak niet annuleren omdat hij niet wordt uitgevoerd:} other {U kunt de volgende taken niet annuleren omdat ze niet worden uitgevoerd:}}" -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "{0, plural, one {U hebt geen toestemming om de volgende taak te annuleren:} other {U hebt geen toestemming om de volgende taken te annuleren:}}" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -msgid "{0}" -msgstr "{0}" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "{0} (verwijderd)" -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "{0} meer" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "{0} bronnen met mislukte synchronisaties." -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -msgid "{0}: {1}" -msgstr "{0}: {1}" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "{brandName} logo" -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "{dateStr} door <0>{username}" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:187 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "{forks, plural, one {# vork} other {# vorken}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{intervalValue, plural, one {dag} other {dagen}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{intervalValue, plural, one {uur} other {uren}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{intervalValue, plural, one {minuut} other {minuten}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{intervalValue, plural, one {maand} other {maanden}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{intervalValue, plural, one {week} other {weken}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{intervalValue, plural, one {jaar} other {jaren}}" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/Schedule/shared/DateTimePicker.js:49 +msgid "{label} date" +msgstr "" + +#: components/Schedule/shared/DateTimePicker.js:57 +msgid "{label} time" +msgstr "" + +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "{minuten} min {seconden} sec" -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "{numJobsToCancel, plural, one {Taak annuleren} other {Taken annuleren}}" -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {Deze actie annuleert de volgende taak:} other {Deze actie annuleert de volgende taken:}}" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/DetailList/NumberSinceDetail.js:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr "{sessionCountdown, plural, one {U wordt over # seconde uitgelogd wegens inactiviteit} other {U wordt over # seconden uitgelogd wegens inactiviteit}}" diff --git a/awx/ui_next/src/locales/zh/messages.po b/awx/ui_next/src/locales/zh/messages.po index dd45442224..a7fd317fb3 100644 --- a/awx/ui_next/src/locales/zh/messages.po +++ b/awx/ui_next/src/locales/zh/messages.po @@ -2,370 +2,372 @@ msgid "" msgstr "" "POT-Creation-Date: 2021-06-08 18:28+0000\n" "Mime-Version: 1.0\n" -"Language: zh \n" +"Language: zh\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "(限制为前 10)" -#: components/TemplateList/TemplateListItem.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "(启动时提示)" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* 此字段将使用指定的凭证从外部 secret 管理系统检索。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -msgid "- Enable Concurrent Jobs" -msgstr "- 启用并发作业" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -msgid "- Enable Webhooks" -msgstr "- 启用 Webhook" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "/ (project root)" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:211 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "0(普通)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:102 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "0(警告)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:103 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "1(信息)" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:212 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "1(详细)" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:104 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "2(调试)" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:213 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "2(更多详细内容)" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "3(调试)" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "4(连接调试)" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "5(WinRM 调试)" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" "the branch field not otherwise available." msgstr "要获取的 refspec(传递至 Ansible git 模块)。此参数允许通过分支字段访问原本不可用的引用。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "订阅清单是红帽订阅的一个导出。要生成订阅清单,请访问 <0>access.redhat.com。如需更多信息,请参阅<1>用户指南。" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "所有" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:211 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "API 服务/集成密钥" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "API 令牌" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "API 服务/集成密钥" -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "关于" -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:70 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:145 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "访问" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:79 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "访问令牌过期" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:275 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "帐户 SID" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "帐户令牌" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "操作" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:87 -#: components/Schedule/ScheduleList/ScheduleList.jsx:164 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:154 -#: screens/ActivityStream/ActivityStream.jsx:257 -#: screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:46 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:168 -#: screens/Credential/CredentialList/CredentialList.jsx:149 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:186 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:163 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostList/HostList.jsx:165 -#: screens/Host/HostList/HostListItem.jsx:42 -#: 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:148 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: 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:223 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:203 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Project/ProjectList/ProjectList.jsx:172 -#: screens/Project/ProjectList/ProjectListItem.jsx:171 -#: screens/Team/TeamList/TeamList.jsx:151 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:168 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "操作" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:83 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 -#: components/TemplateList/TemplateListItem.jsx:233 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "活动" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:44 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "活动流" -#: screens/Setting/SettingList.jsx:110 -msgid "Activity Stream settings" -msgstr "活动流设置" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "活动流类型选择器" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "操作者" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "添加" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "添加链接" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "添加节点" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "添加问题" -#: components/AddRole/AddResourceRole.jsx:184 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "添加角色" -#: components/AddRole/AddResourceRole.jsx:181 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "添加团队角色" -#: components/AddRole/AddResourceRole.jsx:178 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "添加用户角色" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "添加新令牌" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 msgid "Add a new node between these two nodes" msgstr "在这两个节点间添加新节点" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:159 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "添加容器组" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "添加现有组" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "添加现有主机" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:160 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "添加实例组" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "添加清单" -#: components/TemplateList/TemplateList.jsx:133 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "添加作业模板" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "添加新组" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "添加新主机" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "添加资源类型" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "添加智能清单" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "添加团队权限" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "添加用户权限" -#: components/TemplateList/TemplateList.jsx:134 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "添加工作流模板" -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "管理" -#: components/DataListToolbar/DataListToolbar.jsx:85 -#: screens/Job/JobOutput/JobOutput.jsx:706 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "高级" -#: components/Search/AdvancedSearch.jsx:282 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "高级搜索文档" -#: components/Search/AdvancedSearch.jsx:264 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "高级搜索值输入" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:172 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -373,382 +375,369 @@ msgid "" "like the Ansible inventory .ini file format." msgstr "因 SCM 修订版本变更进行每次项目更新后,请在执行作业任务前从所选源刷新清单。这是面向静态内容,如 Ansible 清单 .ini 文件格式。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "发生次数后" -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "警报模式" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "所有" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "作业作业类型" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "所有作业" -#: components/PromptDetail/PromptProjectDetail.jsx:48 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:80 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "允许分支覆写" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -msgid "Allow Provisioning Callbacks" -msgstr "允许置备回调" +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 +msgid "Allow branch override" +msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "允许在使用此项目的作业模板中更改 Source Control 分支或修订版本。" -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "允许的 URI 列表,以空格分开" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "始终" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "Amazon EC2" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "发生错误" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "必须选择一个清单" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "Ansible Tower" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "Ansible Tower 文档" -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "Answer 类型" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "回答变量名称" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "任何" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "应用程序" -#: screens/User/Users.jsx:36 -msgid "Application Name" -msgstr "应用程序名" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -msgid "Application access token" -msgstr "应用程序访问令牌" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "应用程序信息" -#: screens/User/UserTokenList/UserTokenList.jsx:111 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "应用程序名" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "未找到应用程序。" -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:120 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:156 -#: util/getRelatedResourceDeleteDetails.js:215 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 +#: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "应用程序" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "应用程序和令牌" -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "批准" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "批准" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "已批准" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "已批准 - {0}。详情请参阅活动流。" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "于 {0} - {1} 批准" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "4 月" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "您确定要取消此作业吗?" -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "您确定要删除:" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "您确定要禁用本地身份验证吗?这样做可能会影响用户登录的能力,以及系统管理员撤销此更改的能力。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "您确定要退出 Workflow Creator 而不保存您的更改吗?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "您确定要删除此工作流中的所有节点吗?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "您确定要删除以下节点吗?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "您确定要从删除这个链接吗?" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "您确定要从删除这个节点吗?" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "您确定要从 {1} 中删除访问 {0} 吗?这样做会影响团队的所有成员。" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "您确定要从 {username} 中删除 {0} 访问吗?" -#: screens/Job/JobOutput/JobOutput.jsx:844 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "您确定要提交取消此作业的请求吗?" -#: components/AdHocCommands/AdHocDetailsStep.jsx:106 -#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "参数" -#: screens/Job/JobDetail/JobDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "工件" -#: screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "关联" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "关联角色错误" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "关联模态" -#: components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "此字段至少选择一个值。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "8 月" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "身份验证" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:89 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "授权代码过期" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "授权授予类型" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:161 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "Auto" -#: screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "Azure AD" -#: screens/Setting/SettingList.jsx:60 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "Azure AD 设置" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:125 -#: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:133 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "返回" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "返回到凭证" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "返回到仪表板" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "返回到组" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "返回到主机" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "返回到清单" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "返回到作业" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "返回到通知" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "返回到机构" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "返回到项目" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "返回到调度" -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: 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/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "返回到设置" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "返回到源" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "返回到团队" -#: screens/Template/Template.jsx:138 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "返回到模板" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "返回到令牌" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "返回到用户" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "返回到工作流批准" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "返回到应用程序" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "返回到凭证类型" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "返回到执行环境" -#: screens/InstanceGroup/ContainerGroup.jsx:56 -#: screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "返回到实例组" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "返回到管理作业" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:69 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -756,11 +745,11 @@ msgid "" "path used to locate playbooks." msgstr "用于定位 playbook 的基本路径。位于该路径中的目录将列在 playbook 目录下拉列表中。基本路径和所选 playbook 目录一起提供了用于定位 playbook 的完整路径。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "基本验证密码" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -768,1048 +757,1057 @@ msgid "" "provide a custom refspec." msgstr "要签出的分支。除了分支外,您可以输入标签、提交散列和任意 refs。除非你还提供了自定义 refspec,否则某些提交散列和 refs 可能无法使用。" -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "品牌图像" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "浏览" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "默认情况下,我们会收集关于服务使用情况的分析数据并将其传送到红帽。服务收集的数据分为两类。如需更多信息,请参阅<0>此 Tower 文档页。取消选择以下复选框以禁用此功能。" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:184 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" 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:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "缓存超时" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "缓存超时" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "缓存超时(秒)" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:126 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:134 -#: components/Lookup/HostFilterLookup.jsx:326 -#: 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: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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "取消" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "取消清单源同步" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:820 -#: screens/Job/JobOutput/JobOutput.jsx:821 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "取消作业" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "取消项目同步" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:210 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "取消同步" -#: screens/Job/JobOutput/JobOutput.jsx:828 -#: screens/Job/JobOutput/JobOutput.jsx:831 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "取消作业" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "取消链路更改" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "取消链接删除" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "取消查找" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "取消节点删除" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "取消恢复" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "取消所选作业" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "取消所选作业" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "取消订阅编辑" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:389 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "取消 {0}" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "已取消" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:152 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." msgstr "在不提供日志记录聚合器主机和日志记录聚合器类型的情况下,无法启用日志聚合器。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:245 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "容量" -#: components/Search/AdvancedSearch.jsx:185 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 +msgid "Capacity Adjustment" +msgstr "" + +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "包含不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:209 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "结尾不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:173 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "完全相同不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "regex 不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:197 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "开头不区分大小写的版本。" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:75 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." msgstr "部署 {brandName} 时更改 PROJECTS_ROOT 以更改此位置。" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "已更改" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "更改" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "频道" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:206 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "检查" -#: components/Search/AdvancedSearch.jsx:251 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "检查给定字段或相关对象是否为 null;需要布尔值。" -#: components/Search/AdvancedSearch.jsx:257 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "检查给定字段的值是否出现在提供的列表中;需要一个以逗号分隔的项目列表。" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr "选择 .json 文件" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "选择通知类型" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:28 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "选择 Playbook 目录" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "选择源控制类型" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "选择 Webhook 服务" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:199 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "选择作业类型" -#: components/AdHocCommands/AdHocDetailsStep.jsx:86 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "选择模块" -#: screens/Inventory/shared/InventorySourceForm.jsx:147 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "选择一个源" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "选择 HTTP 方法" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." msgstr "选择您想要作为用户提示的回答类型或格式。请参阅 Ansible Tower 文档来了解每个选项的更多其他信息。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -msgid "Choose an email option" -msgstr "选择电子邮件选项" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "选择应用到所选资源的角色。请注意,所有选择的角色将应用到所有选择的资源。" -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "选择将获得新角色的资源。您可以选择下一步中要应用的角色。请注意,此处选择的资源将接收下一步中选择的所有角色。" -#: components/AddRole/AddResourceRole.jsx:194 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "选择将获得新角色的资源类型。例如,如果您想为一组用户添加新角色,请选择用户并点击下一步。您可以选择下一步中的具体资源。" -#: components/PromptDetail/PromptProjectDetail.jsx:40 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "清理" -#: components/DataListToolbar/DataListToolbar.jsx:64 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "清除所有过滤器" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "清除订阅" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "清除订阅选择" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "点一个可用的节点来创建新链接。点击图形之外来取消。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 msgid "Click the Edit button below to reconfigure the node." msgstr "点击下面的编辑按钮重新配置节点。" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "点击这个按钮使用所选凭证和指定的输入验证到 secret 管理系统的连接。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "点击以创建到此节点的新链接。" -#: screens/Template/Survey/MultipleChoiceField.jsx:114 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "点击以切换默认值" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "点击以查看作业详情" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "客户端 ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "客户端标识符" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "客户端标识符" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "客户端 secret" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "客户端类型" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "关闭" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "关闭订阅模态" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "云" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "折叠" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "命令" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "合规" -#: screens/Template/shared/JobTemplateForm.jsx:602 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "并发作业" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "确认" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "确认删除" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:273 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "确认禁用本地授权" -#: screens/User/shared/UserForm.jsx:87 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "确认密码" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "确认取消作业" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "确认取消" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "确认删除" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "确认解除关联" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "确认链接删除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "确认节点删除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "确认删除所有节点" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "确认全部恢复" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "确认选择" -#: screens/Job/JobDetail/JobDetail.jsx:236 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "容器组" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "容器组" -#: screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "未找到容器组。" -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "内容加载" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "继续" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." msgstr "控制 Ansible 为清单源更新作业生成的输出级别。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." msgstr "控制 ansible 在 playbook 执行时生成的输出级别。" -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." msgstr "控制 ansible 在 playbook 执行时生成的输出级别。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "趋同" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "趋同选择" -#: components/CopyButton/CopyButton.jsx:41 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "复制" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "复制凭证" -#: components/CopyButton/CopyButton.jsx:48 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "复制错误" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "复制执行环境" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "复制清单" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "复制通知模板" -#: screens/Project/ProjectList/ProjectListItem.jsx:211 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "复制项目" -#: components/TemplateList/TemplateListItem.jsx:207 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "复制模板" -#: screens/Project/ProjectList/ProjectListItem.jsx:166 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "将完整修订复制到剪贴板。" -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "版权" -#: screens/Template/shared/JobTemplateForm.jsx:406 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "创建" -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "创建新应用" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "创建新凭证" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "创建新主机" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "创建新作业模板" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "创建新通知模板" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "创建新机构" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "创建新项目" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "创建新调度" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "创建新团队" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "创建新用户" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "创建新工作流模板" -#: screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "使用应用的过滤器创建新智能清单" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "创建新容器组" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "创建新凭证类型" -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "创建新凭证类型" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "创建新执行环境" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "创建新组" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "创建新主机" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "创建新实例组" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "创建新清单" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "创建新智能清单" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "创建新源" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "创建用户令牌" -#: 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:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:182 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:134 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "已创建" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:158 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: 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:190 -#: components/TemplateList/TemplateList.jsx:208 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:137 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 -#: screens/Host/HostGroups/HostGroupsList.jsx:163 -#: screens/Host/HostList/HostList.jsx:151 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: 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:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "创建者(用户名)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:168 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "创建者(用户名)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:108 -#: 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:51 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 -#: util/getRelatedResourceDeleteDetails.js:173 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 +#: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "凭证" -#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:73 msgid "Credential Input Sources" msgstr "凭证输入源" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "凭证名称" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "凭证类型" -#: routeConfig.jsx:115 -#: 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 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "凭证类型" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "未找到凭证。" -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "凭证密码" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。如果留空,底层 Pod 的服务帐户会被使用。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:164 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "使用受保护的容器 registry 进行身份验证的凭证。" -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." msgstr "未找到凭证类型。" -#: components/JobList/JobListItem.jsx:212 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:193 -#: components/LaunchPrompt/steps/useCredentialsStep.jsx:64 -#: 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/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: 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:374 -#: util/getRelatedResourceDeleteDetails.js:97 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 +#: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "凭证" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:54 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "不允许在启动时需要密码的凭证。请删除或替换为同一类型的凭证以便继续: {0}" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "当前页" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "自定义 pod 规格" -#: components/TemplateList/TemplateListItem.jsx:144 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "自定义虚拟环境 {0} 必须替换为一个执行环境。" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:53 -msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -msgstr "自定义虚拟环境 {virtualEnvironment} 必须被一个执行环境替换。" +#: components/TemplateList/TemplateListItem.js:155 +msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "自定义消息…" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:66 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "自定义 Pod 规格" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "已删除" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "仪表板" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "仪表板(所有活动)" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "数据保留的周期" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 -#: components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "天" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:173 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 msgid "Days of Data to Keep" msgstr "要保留数据的天数" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:108 msgid "Days remaining" msgstr "剩余的天数" -#: screens/Job/JobOutput/JobOutput.jsx:698 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "调试" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "12 月" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "默认" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:195 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "默认执行环境" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "默认回答" -#: screens/Setting/SettingList.jsx:102 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "定义系统级的特性和功能" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:235 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:246 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:250 -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:116 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: 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: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:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:264 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "删除" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "删除所有组和主机" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:278 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "删除凭证" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "删除执行环境" -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "删除主机" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "删除清单" -#: screens/Job/JobDetail/JobDetail.jsx:397 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "删除作业" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:391 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "删除作业模板" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:348 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "删除通知" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "删除机构" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "删除项目" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "删除问题" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "删除调度" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "删除问卷调查" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "删除团队" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "删除用户" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "删除用户令牌" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "删除工作流批准" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:258 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "删除工作流作业模板" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "删除所有节点" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "创建应用" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "删除凭证类型" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "删除错误" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:110 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "删除实例组" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "删除清单源" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:73 -msgid "Delete on Update" -msgstr "更新时删除" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "删除智能清单" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1817,681 +1815,721 @@ msgid "" "of time required to complete an update." msgstr "在进行更新前删除整个本地存储库。根据存储库的大小,这可能会显著增加完成更新所需的时间。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 +msgid "Delete the project before syncing" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "删除此链接" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "删除此节点" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "删除 {pluralizedItemName}?" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "已删除" -#: components/TemplateList/TemplateList.jsx:268 -#: screens/Credential/CredentialList/CredentialList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:230 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "删除错误" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:209 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "删除错误" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "已拒绝" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "拒绝 - {0}。详情请查看活动流。" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "拒绝于 {0} - {1}" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "拒绝" -#: screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "已弃用" -#: 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:186 -#: components/Schedule/shared/ScheduleForm.jsx:107 -#: components/TemplateList/TemplateList.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:227 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:130 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:212 -#: screens/Credential/CredentialList/CredentialList.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:154 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:142 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: 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/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:57 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: 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:148 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 -#: screens/Organization/OrganizationList/OrganizationList.jsx:136 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:137 -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: 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:246 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:132 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: 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:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "描述" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:251 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "目标频道" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "目标频道或用户" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "目标 SMS 号码" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "目标 SMS 号码" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "目标频道" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "目标频道或用户" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:61 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:71 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:63 -#: screens/InstanceGroup/InstanceGroup.jsx:64 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:144 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:37 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "详情" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "详情标签页" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:240 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:294 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "禁用 SSL 验证" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "禁用 SSL 验证" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "解除关联" -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "从主机中解除关联组?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "从组中解除关联主机?" -#: screens/InstanceGroup/Instances/InstanceList.jsx:190 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "从实例组中解除关联实例?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "解除关联相关的组?" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "解除关联相关的团队?" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "解除关联角色" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "解除关联角色!" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "解除关联?" -#: screens/Template/shared/JobTemplateForm.jsx:480 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 +msgid "Discard local changes before syncing" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." msgstr "将此作业模板完成的工作分成指定作业分片数,每一分片都针对清单的一部分运行相同的任务。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "文档。" -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "完成" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "下载输出" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "电子邮件" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "电子邮件选项" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:162 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" "executing job tasks." msgstr "每次使用此清单运行作业时,请在执行作业前从所选源中刷新清单。" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 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: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:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:339 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:341 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:200 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 -#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:149 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:153 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx: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: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 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "编辑" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "编辑凭证" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "编辑凭证插件配置" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:46 -#: screens/Setting/Settings.jsx:49 -#: screens/Setting/Settings.jsx:53 -#: screens/Setting/Settings.jsx:56 -#: screens/Setting/Settings.jsx:59 -#: screens/Setting/Settings.jsx:62 -#: screens/Setting/Settings.jsx:65 -#: screens/Setting/Settings.jsx:68 -#: screens/Setting/Settings.jsx:71 -#: screens/Setting/Settings.jsx:74 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:93 -#: screens/Setting/Settings.jsx:96 -#: screens/Setting/Settings.jsx:99 -#: screens/Setting/Settings.jsx:102 -#: screens/Setting/Settings.jsx:105 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Settings.jsx:111 -#: screens/Setting/Settings.jsx:114 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "类型详情" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "编辑执行环境" -#: screens/Host/HostGroups/HostGroupItem.jsx:50 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "编辑组" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "编辑主机" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "编辑清单" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "编辑链接" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "编辑节点" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "编辑通知模板" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "编辑机构" -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Project/ProjectList/ProjectListItem.jsx:202 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "编辑项目" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "编辑问题" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "编辑调度" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:122 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "编辑源" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "编辑团队" -#: components/TemplateList/TemplateListItem.jsx:192 -#: components/TemplateList/TemplateListItem.jsx:198 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:129 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "编辑模板" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "编辑用户" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "编辑应用" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "编辑凭证类型" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "编辑详情" -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "编辑组" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "编辑主机" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "编辑实例组" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "编辑这个链接" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "编辑此节点" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 +msgid "Edit workflow" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "已经过" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "过期的时间" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 msgid "Elapsed time that the job ran" msgstr "作业运行所经过的时间" -#: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:71 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "电子邮件" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" msgstr "电子邮件选项" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:64 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:274 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "启用并发作业" -#: screens/Template/shared/JobTemplateForm.jsx:609 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "启用事实缓存" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:215 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "启用 HTTPS 证书验证" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -msgid "Enable Privilege Escalation" -msgstr "启用权限升级" - -#: screens/Template/shared/JobTemplateForm.jsx:583 -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:254 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "启用 Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "为此工作流作业模板启用 Webhook。" -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -msgid "Enable Webhooks" -msgstr "启用 Webhook" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:159 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "启用外部日志记录" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:191 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "单独启用日志系统跟踪事实" -#: components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "启用权限升级" -#: screens/Setting/SettingList.jsx:56 -msgid "Enable simplified login for your {brandName} applications" -msgstr "为您的 {brandName} 应用启用简化的登录" +#: screens/Setting/SettingList.js:52 +msgid "Enable simplified login for your {0} applications" +msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:589 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "为此模板启用 Webhook。" -#: components/Lookup/HostFilterLookup.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "启用" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 +msgid "Enabled Options" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "启用的值" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "启用的变量" -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" -"callback URL. Using the URL a host can contact {BrandName}\n" +"callback URL. Using the URL a host can contact {0}\n" "and request a configuration update using this job\n" "template." -msgstr "允许创建部署回调 URL。使用此 URL,主机可访问 {BrandName} 并使用此作业模板请求配置更新。" +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:232 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" @@ -2499,874 +2537,892 @@ msgid "" "template" msgstr "允许创建部署回调 URL。使用此 URL,主机可访问 {brandName} 并使用此作业模板请求配置更新。" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:155 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "已加密" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "结束" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "最终用户许可证协议" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -msgid "End date/time" -msgstr "结束日期/时间" - -#: components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "结束与预期值不匹配" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "最终用户许可证协议" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "请至少输入一个搜索过滤来创建一个新的智能清单。" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "使用 JSON 或 YAML 语法输入注入程序。示例语法请参阅 Ansible Tower 文档。" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "使用 JSON 或 YAML 语法进行输入。示例语法请参阅 Ansible Tower 文档。" -#: screens/Inventory/shared/SmartInventoryForm.jsx:97 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档。" -#: screens/Inventory/shared/InventoryForm.jsx:93 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "每行输入一个注解标签,不带逗号。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." msgstr "每行输入一个 IRC 频道或用户名。频道不需要输入 # 号,用户不需要输入 @ 符号。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." msgstr "每行输入一个 Slack 频道。频道不需要输入 # 号。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." msgstr "每行输入一封电子邮件地址,为这类通知创建一个接收者列表。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." msgstr "每行输入一个电话号码来指定 SMS 消息的传送目标。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." msgstr "在 Twilio 中输入与“信息服务”关联的号码,格式为 +18005550199。" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>aws_ec2 插件配置指南 。" -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>azure_rm 插件配置指南 。" -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>foreman 插件配置指南 。" -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件和 <1>gcp_compute 插件配置指南。" -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>openstack 插件配置指南 。" -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件部分,以及 <1>ovirt 插件配置指南 。" -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "输入变量来配置清单源。有关如何配置此插件的详细描述,请参阅文档中的<0>清单插件和 <1>vmware_vm_inventory 插件配置指南。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "使用 JSON 或 YAML 语法输入变量。使用单选按钮在两者之间切换。" -#: components/JobList/JobList.jsx:202 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:212 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:225 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:124 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:268 -#: screens/Job/JobOutput/JobOutput.jsx:703 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "错误" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:415 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/Project/ProjectList/ProjectList.js:289 +msgid "Error fetching updated project" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "错误消息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:424 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "错误消息正文" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "保存工作流时出错!" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:51 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: 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:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:232 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: 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:193 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:292 -#: screens/Credential/CredentialList/CredentialList.jsx:197 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:245 -#: screens/Host/HostList/HostList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceList.jsx:230 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 -#: 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: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: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:227 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:177 -#: screens/Organization/OrganizationList/OrganizationList.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:235 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: screens/Project/ProjectList/ProjectList.jsx:231 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: 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: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: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:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "错误!" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "错误:" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:670 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "事件" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "查看详情" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "事件详情 modal" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "事件摘要不可用" -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "事件" -#: components/Search/AdvancedSearch.jsx:167 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "完全匹配(如果没有指定,则默认查找)。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: components/Search/AdvancedSearch.js:165 +msgid "Exact search on id field." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "GIT 源控制的 URL 示例包括:" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "远程归档源控制的 URL 示例包括:" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "Subversion SCM 源控制 URL 示例包括:" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "示例包括::" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:109 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "示例:" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "无论父节点的最后状态如何都执行。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "当父节点出现故障状态时执行。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "当父节点具有成功状态时执行。" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:85 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:72 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:197 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "执行环境" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:144 -#: routeConfig.jsx:140 -#: 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 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 -#: screens/Organization/Organizations.jsx:34 -#: util/getRelatedResourceDeleteDetails.js:87 -#: util/getRelatedResourceDeleteDetails.js:194 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 +msgid "Execution Environment Missing" +msgstr "" + +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 +#: util/getRelatedResourceDeleteDetails.js:80 +#: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "执行环境" -#: screens/Job/JobDetail/JobDetail.jsx:227 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "执行节点" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -msgid "Execution environment image" -msgstr "执行环境镜像" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:78 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "执行环境缺失或删除。" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -msgid "Execution environment name" -msgstr "执行环境名称" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "未找到执行环境。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "不保存退出" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "展开" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "展开输入" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "预期该文件中至少有一个 client_email、project_id 或 private_key 之一。" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -msgid "Expiration" -msgstr "过期" - -#: 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 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "过期" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "过期于" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:98 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "过期于 UTC" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "过期于 {0}" -#: components/JobList/JobListItem.jsx:240 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "解释" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "外部 Secret 管理系统" -#: components/AdHocCommands/AdHocDetailsStep.jsx:295 -#: components/AdHocCommands/AdHocDetailsStep.jsx:296 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "额外变量" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 -#: screens/Project/ProjectList/ProjectListItem.jsx:76 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "完成:" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 +msgid "Fact Storage" +msgstr "" + +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "事实" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "失败" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "失败的主机计数" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "失败的主机" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "失败的主机" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "失败的作业" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "批准一个或多个工作流批准失败。" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "批准工作流批准失败。" -#: components/ResourceAccessList/ResourceAccessList.jsx:235 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "正确分配角色失败" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js: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:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "关联失败。" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "取消清单源同步失败" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:181 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "取消项目同步失败" -#: components/JobList/JobList.jsx:288 +#: components/JobList/JobList.js:302 msgid "Failed to cancel one or more jobs." msgstr "取消一个或多个作业失败。" -#: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:390 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "取消 {0} 失败" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "复制凭证失败。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "复制执行环境失败" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "复制清单失败。" -#: screens/Project/ProjectList/ProjectListItem.jsx:219 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "复制项目失败。" -#: components/TemplateList/TemplateListItem.jsx:212 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "复制模板失败。" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "删除应用程序失败。" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "删除凭证失败。" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "删除组 {0} 失败。" -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "删除主机失败。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "删除清单源 {name} 失败。" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "删除清单失败。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:409 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "删除作业模板失败。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:363 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "删除通知失败。" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:196 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 msgid "Failed to delete one or more applications." msgstr "删除一个或多个应用程序失败。" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:215 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:212 msgid "Failed to delete one or more credential types." msgstr "删除一个或多个凭证类型失败。" -#: screens/Credential/CredentialList/CredentialList.jsx:200 +#: screens/Credential/CredentialList/CredentialList.js:197 msgid "Failed to delete one or more credentials." msgstr "删除一个或多个凭证失败。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:228 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:225 msgid "Failed to delete one or more execution environments" msgstr "删除一个或多个执行环境失败" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "删除一个或多个组失败。" -#: screens/Host/HostList/HostList.jsx:220 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:199 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 msgid "Failed to delete one or more hosts." msgstr "删除一个或多个主机失败。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 msgid "Failed to delete one or more instance groups." msgstr "删除一个或多个实例组失败。" -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 msgid "Failed to delete one or more inventories." msgstr "删除一个或多个清单失败。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:264 +#: screens/Inventory/InventorySources/InventorySourceList.js:260 msgid "Failed to delete one or more inventory sources." msgstr "删除一个或多个清单源失败。" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 msgid "Failed to delete one or more job templates." msgstr "删除一个或多个作业模板失败。" -#: components/JobList/JobList.jsx:277 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "删除一个或多个作业失败。" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:230 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 msgid "Failed to delete one or more notification template." msgstr "删除一个或多个通知模板失败。" -#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "删除一个或多个机构失败。" -#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "删除一个或多个项目失败。" -#: components/Schedule/ScheduleList/ScheduleList.jsx:235 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "删除一个或多个调度失败。" -#: screens/Team/TeamList/TeamList.jsx:203 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "删除一个或多个团队失败。" -#: components/TemplateList/TemplateList.jsx:274 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "删除一个或多个模板失败。" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "删除一个或多个令牌失败。" -#: screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.js:205 msgid "Failed to delete one or more user tokens." msgstr "删除一个或多个用户令牌失败。" -#: screens/User/UserList/UserList.jsx:196 +#: screens/User/UserList/UserList.js:193 msgid "Failed to delete one or more users." msgstr "删除一个或多个用户失败。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "无法删除一个或多个工作流批准。" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:180 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "删除机构失败。" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "删除项目失败。" -#: components/ResourceAccessList/ResourceAccessList.jsx:246 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "删除角色失败" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "删除角色失败。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "删除调度失败。" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "删除智能清单失败。" -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "删除团队失败。" -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "删除用户失败。" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "删除工作流批准失败。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:275 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "删除工作流任务模板失败。" -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "删除 {name} 失败。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "拒绝一个或多个工作流批准失败。" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 msgid "Failed to deny workflow approval." msgstr "拒绝工作流批准失败。" -#: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "解除关联一个或多个组关联。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "解除关联一个或多个主机失败。" -#: screens/InstanceGroup/Instances/InstanceList.jsx:235 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "解除关联一个或多个实例失败。" -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "解除关联一个或多个团队失败。" -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "获取自定义登录配置设置失败。系统默认设置会被显示。" -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:176 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: screens/Project/ProjectList/ProjectList.js:293 +msgid "Failed to fetch the updated project data." +msgstr "" + +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "启动作业失败。" -#: contexts/Config.jsx:71 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "获取配置失败。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "获取完整节点资源对象失败。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "获取节点凭证失败。" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "发送测试通知失败。" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "同步清单源失败。" -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "同步项目失败。" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:251 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 msgid "Failed to sync some or all inventory sources." msgstr "同步部分或所有清单源失败。" -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "切换主机失败。" -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "切换实例失败。" -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "切换通知失败。" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "切换调度失败。" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:233 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "更新容量调整失败。" -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "更新问卷调查失败。" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "用户令牌失败。" -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "失败" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "false" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "2 月" -#: components/Search/AdvancedSearch.jsx:179 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "字段包含值。" -#: components/Search/AdvancedSearch.jsx:203 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "字段以值结尾。" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:77 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "用于传递自定义 Kubernetes 或 OpenShift Pod 规格的字段。" -#: components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "字段与给出的正则表达式匹配。" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "字段以值开头。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "第五" -#: screens/Job/JobOutput/JobOutput.jsx:687 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "文件差异" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "上传文件被拒绝。请选择单个 .json 文件。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "文件、目录或脚本" -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "完成时间" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "完成" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "第一" -#: components/AddRole/AddResourceRole.jsx:129 -#: components/AddRole/AddResourceRole.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:132 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: 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:100 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "名" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "首次运行" -#: components/ResourceAccessList/ResourceAccessList.jsx:181 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "名字" -#: components/Search/AdvancedSearch.jsx:266 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "首先,选择一个密钥" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "使图像与可用屏幕大小匹配" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "浮点值" -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Follow" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3374,433 +3430,443 @@ msgid "" "executing the playbook." msgstr "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." msgstr "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "有关详情请参阅" -#: components/AdHocCommands/AdHocDetailsStep.jsx:184 -#: components/AdHocCommands/AdHocDetailsStep.jsx:185 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 -#: screens/Template/shared/JobTemplateForm.jsx:425 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "分叉" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "第六" -#: components/Schedule/shared/ScheduleForm.jsx:183 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "频率详情" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 -#: components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 +#: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "频率与预期值不匹配" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "周五" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "周五" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: components/Search/AdvancedSearch.js:172 +msgid "Fuzzy search on id, name or description fields." +msgstr "" + +#: components/Search/AdvancedSearch.js:159 +msgid "Fuzzy search on name field." +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "Galaxy 凭证" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy 凭证必须属于机构。" -#: screens/Job/JobOutput/JobOutput.jsx:695 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "收集事实" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "获取订阅" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "获取订阅" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:145 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "Git" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "GitHub" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "GitHub Default" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:63 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:66 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "GitHub Enterprise Team" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "GitHub Organization" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "GitHub Team" -#: screens/Setting/SettingList.jsx:64 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "GitHub 设置" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:237 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "GitLab" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:192 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "全局默认执行环境" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "全局可用" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:148 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "全局可用的执行环境无法重新分配给特定机构" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "前往第一页" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "进入最后页" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "进入下一页" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "进入上一页" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: screens/Setting/SettingList.jsx:68 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "Google OAuth2 设置" -#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "Google OAuth2" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "Grafana" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "Grafana API 密钥" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:117 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:227 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "大于比较。" -#: components/Search/AdvancedSearch.jsx:233 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "大于或等于比较。" -#: components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "组" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "组详情" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "组类型" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:232 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 -#: util/getRelatedResourceDeleteDetails.js:125 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 +#: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "组" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:306 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "HTTP 标头" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:301 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "HTTP 方法" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "帮助" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "隐藏" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "隐藏描述" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "HipChat" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:83 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "主机" -#: screens/Job/JobOutput/JobOutput.jsx:682 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "主机同步故障" -#: screens/Job/JobOutput/JobOutput.jsx:681 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "主机异步正常" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 -#: screens/Template/shared/JobTemplateForm.jsx:642 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "主机配置键" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "主机计数" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "类型详情" -#: screens/Job/JobOutput/JobOutput.jsx:673 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "主机故障" -#: screens/Job/JobOutput/JobOutput.jsx:676 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "主机故障" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "主机过滤器" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "主机名" -#: screens/Job/JobOutput/JobOutput.jsx:675 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "主机正常" -#: screens/Job/JobOutput/JobOutput.jsx:680 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "主机轮询" -#: screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "主机重试" -#: screens/Job/JobOutput/JobOutput.jsx:677 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "主机已跳过" -#: screens/Job/JobOutput/JobOutput.jsx:674 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "主机已启动" -#: screens/Job/JobOutput/JobOutput.jsx:678 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "主机无法访问" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "主机详情" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "主机详情 modal" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "未找到主机" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 msgid "Host status information for this job is unavailable." msgstr "此作业的主机状态信息不可用。" -#: routeConfig.jsx:83 -#: 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 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: 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 -#: util/getRelatedResourceDeleteDetails.js:129 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 +#: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "主机" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:117 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:124 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 +msgid "Hosts automated" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "可用主机" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:135 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 +msgid "Hosts imported" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "剩余主机" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -msgid "Hosts used" -msgstr "使用的主机" - -#: components/Schedule/shared/ScheduleForm.jsx:161 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "小时" -#: components/JobList/JobList.jsx:169 -#: components/Lookup/HostFilterLookup.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "仪表板 ID" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "面板 ID" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "仪表板 ID(可选)" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "面板 ID(可选)" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "IRC" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "IRC Nick" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "IRC 服务器地址" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "IRC 服务器端口" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "IRC Nick" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "IRC 服务器地址" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "IRC 服务器密码" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "IRC 服务器端口" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:235 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "图标 URL" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" "on the external source." msgstr "如果选中,子组和主机的所有变量都将被删除,并替换为外部源上的变量。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -3811,430 +3877,459 @@ msgid "" "default group for the inventory." msgstr "如果选中,以前存在于外部源上的但现已被删除的任何主机和组都将从清单中删除。不由清单源管理的主机和组将提升到下一个手动创建的组,如果没有手动创建组来提升它们,则它们将保留在清单的“all”默认组中。" -#: screens/Template/shared/JobTemplateForm.jsx:559 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." msgstr "如果启用,则以管理员身份运行此 playbook。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff mode。" -#: screens/Template/shared/JobTemplateForm.jsx:499 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:205 +#: components/AdHocCommands/AdHocDetailsStep.js:200 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:603 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "如果启用,将允许同时运行此作业模板。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "如果启用,将允许同时运行此工作流作业模板。" -#: screens/Template/shared/JobTemplateForm.jsx:610 +#: screens/Template/shared/JobTemplateForm.js:613 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.js:151 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "如果您准备进行升级或续订,请点<0>联系我们。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." msgstr "如果您还没有订阅,请联系红帽来获得一个试用订阅。" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "如果您只想删除这个特定用户的访问,请将其从团队中删除。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" msgstr "如果您希望清单源在启动和项目更新时更新,请点启动时更新,并进入" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:136 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:142 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:99 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "镜像" -#: screens/Job/JobOutput/JobOutput.jsx:690 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "包含文件" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." msgstr "指明主机是否可用且应该包含在正在运行的作业中。对于作为外部清单一部分的主机,可能会被清单同步过程重置。" -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "Info" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "启动者" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "启动者" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "启动者(用户名)" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "注入程序配置" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "输入配置" -#: screens/Inventory/shared/InventoryForm.jsx:78 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "Insights 凭证" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "Insights for Ansible Automation Platform" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "Insights for Ansible Automation Platform 仪表板" -#: components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "Insights 系统 ID" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "实例" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "实例过滤器" -#: screens/Job/JobDetail/JobDetail.jsx:230 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "实例组" -#: 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: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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "实例组" -#: components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "实例 ID" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "实例组" -#: screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "没有找到实例组" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 +msgid "Instance group used capacity" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "实例组" -#: screens/InstanceGroup/InstanceGroup.jsx:69 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "实例" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "整数" -#: util/validators.jsx:67 +#: util/validators.js:88 msgid "Invalid email address" msgstr "无效的电子邮件地址" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "无效的文件格式。请上传有效的红帽订阅清单。" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "无效的链路目标。无法连接到子节点或祖先节点。不支持图形周期。" -#: screens/Login/Login.jsx:135 +#: util/validators.js:33 +msgid "Invalid time format" +msgstr "" + +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "无效的用户名或密码。请重试。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 -#: util/getRelatedResourceDeleteDetails.js:66 -#: util/getRelatedResourceDeleteDetails.js:208 -#: util/getRelatedResourceDeleteDetails.js:276 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 +#: util/getRelatedResourceDeleteDetails.js:201 +#: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "清单" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "无法复制含有源的清单" -#: components/HostForm/HostForm.jsx:30 -#: components/JobList/JobListItem.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:253 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:164 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:47 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "清单" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "清单(名称)" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "清单文件" -#: components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "清单 ID" -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "清单源" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "清单源同步" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:102 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "清单源同步错误" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:169 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: util/getRelatedResourceDeleteDetails.js:73 -#: util/getRelatedResourceDeleteDetails.js:153 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 +#: util/getRelatedResourceDeleteDetails.js:66 +#: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "清单源" -#: components/JobList/JobList.jsx:181 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "清单同步" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "清单更新" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:223 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "清单文件" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "未找到清单。" -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "清单同步" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "清单同步失败" -#: screens/Job/JobOutput/JobOutput.jsx:684 +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "项故障" -#: screens/Job/JobOutput/JobOutput.jsx:683 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "项正常" -#: screens/Job/JobOutput/JobOutput.jsx:685 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "项已跳过" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "项" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "每页的项" -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:90 -#: screens/Project/ProjectList/ProjectListItem.jsx:69 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "作业 ID:" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "JSON" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "JSON 标签页" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "JSON:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "1 月" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "作业" -#: components/JobList/JobListItem.jsx:96 -#: 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 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "作业取消错误" -#: screens/Job/JobDetail/JobDetail.jsx:410 -#: screens/Job/JobOutput/JobOutput.jsx:852 -#: screens/Job/JobOutput/JobOutput.jsx:853 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "作业删除错误" -#: screens/Job/JobDetail/JobDetail.jsx:243 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "作业分片" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 -#: screens/Template/shared/JobTemplateForm.jsx:479 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "作业分片" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "作业状态" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:220 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:292 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:324 -#: screens/Template/shared/JobTemplateForm.jsx:520 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "作业标签" -#: components/JobList/JobListItem.jsx:148 -#: components/TemplateList/TemplateList.jsx:199 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:29 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "作业模板" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:40 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "作业模板默认凭证必须替换为相同类型之一。请为以下类型选择一个凭证才能继续: {0}" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 -#: util/getRelatedResourceDeleteDetails.js:107 -#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:100 +#: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "作业模板" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "在创建或编辑节点时无法选择缺失的清单或项目的作业模板。选择另一个模板或修复缺少的字段以继续。" @@ -4242,696 +4337,694 @@ msgstr "在创建或编辑节点时无法选择缺失的清单或项目的作业 msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "在创建或编辑节点时无法选择具有提示密码凭证的作业模板" -#: components/JobList/JobList.jsx:177 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/JobTemplateForm.jsx:251 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "作业类型" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "作业状态" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "作业状态图标签页" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "作业模板" -#: components/JobList/JobList.jsx:160 -#: components/JobList/JobList.jsx:236 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:74 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:73 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:90 -#: screens/Setting/Settings.jsx:72 -#: screens/Template/Template.jsx:164 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "作业" -#: screens/Setting/SettingList.jsx:95 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "作业设置" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "7 月" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "6 月" -#: components/Search/AdvancedSearch.jsx:132 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "密钥" -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "键选择" -#: components/Search/AdvancedSearch.jsx:126 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "键 typeahead" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "关键词" -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "LDAP" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "LDAP 1" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "LDAP 2" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "LDAP 3" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "LDAP 4" -#: screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "LDAP 5" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "LDAP 默认" -#: screens/Setting/SettingList.jsx:72 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "LDAP 设置" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "LDAP1" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "LDAP2" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "LDAP3" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "LDAP4" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "LDAP5" -#: components/JobList/JobList.jsx:173 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "标签名称" -#: components/JobList/JobListItem.jsx:225 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:187 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:102 -#: components/TemplateList/TemplateListItem.jsx:306 -#: screens/Job/JobDetail/JobDetail.jsx:277 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: screens/Template/shared/JobTemplateForm.jsx:392 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "标签" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "最后" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "最后的作业状态" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "最近登陆" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:282 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:167 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:254 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: 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 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:187 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "最后修改" -#: components/AddRole/AddResourceRole.jsx:133 -#: components/AddRole/AddResourceRole.jsx:147 -#: components/ResourceAccessList/ResourceAccessList.jsx:136 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: 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:106 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "姓氏" -#: components/TemplateList/TemplateList.jsx:222 -#: components/TemplateList/TemplateListItem.jsx:153 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "最后运行" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "最后运行" -#: components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "最后作业" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -msgid "Last job run" -msgstr "最后作业运行" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:258 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "最后修改" -#: components/ResourceAccessList/ResourceAccessList.jsx:182 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "姓氏" -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "最后使用" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:106 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:240 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:249 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "启动" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "启动管理作业" -#: components/TemplateList/TemplateListItem.jsx:173 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "启动模板" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "启动管理作业" -#: components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "启动模板" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "启动工作流" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "启动 | {0}" -#: components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "启动者" -#: components/JobList/JobList.jsx:189 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "启动者(用户名)" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "了解更多有关 Insights for Ansible Automation Platform 的信息" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "将此字段留空以使执行环境全局可用。" -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "图例" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "小于比较。" -#: components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "小于或等于比较。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:164 -#: components/AdHocCommands/AdHocDetailsStep.jsx:165 -#: components/JobList/JobList.jsx:207 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:76 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 -#: screens/Template/shared/JobTemplateForm.jsx:441 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "限制" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "链接到可用节点" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "正在加载" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "本地时区" -#: components/Schedule/shared/ScheduleForm.jsx:138 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "本地时区" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "登录" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -msgid "Log aggregator test sent successfully." -msgstr "日志聚合器测试发送成功。" - -#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "日志记录" -#: screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "日志设置" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:166 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "退出" -#: components/Lookup/HostFilterLookup.jsx:305 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "查找 modal" -#: components/Search/AdvancedSearch.jsx:150 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "查找选择" -#: components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "查找类型" -#: components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "查找 typeahead" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 -#: screens/Project/ProjectList/ProjectListItem.jsx:67 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "最新同步" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:249 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "机器凭证" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:98 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "机器凭证" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -msgid "Managed by Tower" -msgstr "由 Tower 管理" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 +msgid "Managed" +msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "受管的节点" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:37 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "管理作业" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "管理作业" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "管理作业" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "管理作业启动错误" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "未找到管理作业。" -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "管理作业" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:76 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: 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:144 -#: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "手动" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "3 月" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "Mattermost" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "最大主机数" -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "最大值" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "最大长度" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "5 月" -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "成员" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "元数据" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "指标" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "指标" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "最小值" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "最小长度" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:33 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "新实例上线时自动分配给此组的最小实例数量。" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:43 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "新实例上线时将自动分配给此组的所有实例的最小百分比。" -#: components/Schedule/shared/ScheduleForm.jsx:160 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "分钟" -#: screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.js:96 +msgid "Miscellaneous Authentication" +msgstr "" + +#: screens/Setting/SettingList.js:106 +msgid "Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "杂项系统" -#: screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "杂项系统设置" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "缺少" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:75 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "缺少资源" -#: components/Lookup/HostFilterLookup.jsx:357 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 -#: screens/User/UserTokenList/UserTokenList.jsx:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "修改" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:162 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:212 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:141 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:144 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 -#: screens/Host/HostGroups/HostGroupsList.jsx:167 -#: screens/Host/HostList/HostList.jsx:155 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: 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:144 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "修改者(用户名)" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:172 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "修改者(用户名)" -#: components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "模块" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "周一" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "周一" -#: components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "月" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "更多信息" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "更多信息" -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "多选" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "多选" -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "多项选择(多选)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "多项选择(单选)" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "多项选择选项" -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:153 -#: components/AddRole/AddResourceRole.jsx:169 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: 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: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: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: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:161 -#: components/Schedule/ScheduleList/ScheduleList.jsx:181 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:99 -#: components/TemplateList/TemplateList.jsx:187 -#: components/TemplateList/TemplateList.jsx:220 -#: components/TemplateList/TemplateListItem.jsx:126 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -4944,291 +5037,307 @@ msgstr "多项选择选项" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: 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:128 -#: screens/Credential/CredentialList/CredentialList.jsx:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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: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: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:91 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupsList.jsx:158 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: 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:240 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:121 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:147 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: 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: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:49 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: 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:143 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: 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: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:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:131 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: screens/Project/ProjectList/ProjectList.jsx:132 -#: screens/Project/ProjectList/ProjectList.jsx:168 -#: screens/Project/ProjectList/ProjectListItem.jsx:122 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:124 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx: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:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: 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:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "名称" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "导航" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "永不" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "永不更新" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "永不过期" -#: components/JobList/JobList.jsx:196 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "新" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:80 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:135 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "下一" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:163 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "下次运行" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:262 msgid "No" msgstr "否" -#: screens/Job/JobOutput/JobOutput.jsx:691 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "未匹配主机" -#: screens/Job/JobOutput/JobOutput.jsx:679 -#: screens/Job/JobOutput/JobOutput.jsx:692 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "没有剩余主机" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "没有可用的 JSON" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "没有作业" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "没有可用的标准错误" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "没有可用的标准输出" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "没有清单同步失败。" -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "没有找到项。" -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "未找到结果" -#: components/Search/AdvancedSearch.jsx:100 -#: components/Search/AdvancedSearch.jsx:136 -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "没有找到结果" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "未找到订阅" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "没有找到问卷调查问题" -#: components/PaginatedDataList/PaginatedDataList.jsx:88 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "没有找到 {pluralizedItemName}" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "节点类型" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "节点类型" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "无" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "无(运行一次)" -#: components/Schedule/shared/ScheduleForm.jsx:159 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "无(运行一次)" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:28 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "普通用户" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "未找到" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "没有配置" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "没有为清单同步配置。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." msgstr "请注意,只有直接属于此组的主机才能解除关联。子组中的主机必须与其所属的子组级别直接解除关联。" -#: screens/Host/HostGroups/HostGroupsList.jsx:213 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 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" @@ -5236,11 +5345,19 @@ msgid "" "with directly and indirectly." msgstr "请注意,如果主机也是组子对象的成员,在解除关联后,您可能仍然可以在列表中看到组。这个列表显示了主机与其直接及间接关联的所有组。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "注意:该字段假设远程名称为“origin”。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -5250,502 +5367,494 @@ msgid "" "password information." msgstr "备注:在将 SSH 协议用于 GitHub 或 Bitbucket 时,只需输入 SSH 密钥,而不要输入用户名(除 git 外)。另外,GitHub 和 Bitbucket 在使用 SSH 时不支持密码验证。GIT 只读协议 (git://) 不使用用户名或密码信息。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "通知颜色" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "没有找到通知模板。" -#: 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 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 +#: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "通知模板" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "通知类型" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "通知颜色" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "发送通知成功" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "通知超时" -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "通知类型" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:150 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "通知" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "11月" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "确定" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "发生次数" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "10 月" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "关" -#: components/AdHocCommands/AdHocDetailsStep.jsx:212 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:505 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "于" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "失败时" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "成功时" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "于日期" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "于日" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "唯一分组标准" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "OpenStack" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "选项详情" -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:227 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." msgstr "描述此作业模板的可选标签,如 'dev' 或 'test'。标签可用于对作业模板和完成的作业进行分组和过滤。" -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "(可选)选择要用来向 Webhook 服务发回状态更新的凭证。" -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:165 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:167 -#: components/PromptDetail/PromptProjectDetail.jsx:93 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:85 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:142 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:62 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:245 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:164 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 -#: screens/Template/shared/JobTemplateForm.jsx:552 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:251 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "选项" -#: 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 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:98 -#: components/PromptDetail/PromptProjectDetail.jsx:57 -#: components/PromptDetail/PromptProjectDetail.jsx:67 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: components/TemplateList/TemplateListItem.jsx:240 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:219 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: 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:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:55 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:135 -#: screens/Project/ProjectList/ProjectListItem.jsx:236 -#: screens/Project/ProjectList/ProjectListItem.jsx:247 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: 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:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "机构" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "机构(名称)" -#: screens/Team/TeamList/TeamList.jsx:133 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "机构名称" -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "未找到机构。" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: 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 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 -#: util/getRelatedResourceDeleteDetails.js:238 -#: util/getRelatedResourceDeleteDetails.js:272 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 +#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "机构" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "其他提示" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:61 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "不合规" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "输出" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "覆盖" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -msgid "Overwrite Variables" -msgstr "覆盖变量" +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 +msgid "Overwrite local groups and hosts from remote inventory source" +msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 +msgid "Overwrite local variables from remote inventory source" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "覆盖变量" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "POST" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "PUT" -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "Pagerduty" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:206 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "Pagerduty 子域" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "Pagerduty 子域" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "分页" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "Pan 下" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "Pan 左" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "Pan 右" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "Pan 上" -#: components/AdHocCommands/AdHocDetailsStep.jsx:266 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "传递额外的命令行更改。有两个 ansible 命令行参数:" -#: screens/Template/shared/JobTemplateForm.jsx:414 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" "Provide key/value pairs using either YAML or JSON. Refer to the\n" "documentation for example syntax." -msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML \n" +msgstr "" +"向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML \n" "或 JSON 提供键/值对。示例语法请参阅相关文档。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML 或 JSON 提供键/值对。示例语法请参阅 Ansible Tower 文档。" -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: 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:76 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "密码" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "过去 24 小时" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "过去一个月" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "过去两周" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "过去一周" -#: components/JobList/JobList.jsx:197 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "待处理" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "等待工作流批准" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "等待删除" -#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "执行搜索以定义主机过滤器" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -msgid "Personal access token" -msgstr "个人访问令牌" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "Play" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "play 数量" -#: screens/Job/JobOutput/JobOutput.jsx:696 +#: screens/Job/JobOutput/JobOutput.js:768 msgid "Play Started" msgstr "Play 已启动" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: screens/Job/JobDetail/JobDetail.jsx:220 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:218 -#: screens/Template/shared/JobTemplateForm.jsx:355 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "Playbook" -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "Playbook 检查" -#: screens/Job/JobOutput/JobOutput.jsx:697 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "Playbook 完成" -#: components/PromptDetail/PromptProjectDetail.jsx:103 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:179 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:85 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "Playbook 目录" -#: components/JobList/JobList.jsx:182 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "Playbook 运行" -#: screens/Job/JobOutput/JobOutput.jsx:688 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "Playbook 已启动" -#: components/TemplateList/TemplateList.jsx:204 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "Playbook 名称" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "Playbook 运行" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "Play" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "请添加问卷调查问题" -#: components/PaginatedDataList/PaginatedDataList.jsx:87 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "请添加 {pluralizedItemName} 来填充此列表" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "请点开始按钮开始。" -#: util/validators.jsx:116 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "请输入有效的 URL。" -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "请输入一个值。" -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "请登录" -#: components/Schedule/shared/ScheduleForm.jsx:575 +#: components/Schedule/shared/ScheduleForm.js:568 msgid "Please select a day number between 1 and 31." msgstr "选择的日数字应介于 1 到 31 之间。" -#: screens/Template/shared/JobTemplateForm.jsx:170 +#: screens/Template/shared/JobTemplateForm.js:173 msgid "Please select an Inventory or check the Prompt on Launch option" msgstr "请选择一个清单或者选中“启动时提示”选项" -#: components/Schedule/shared/ScheduleForm.jsx:567 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "请选择一个比开始日期/时间晚的结束日期/时间。" -#: components/Lookup/HostFilterLookup.jsx:297 +#: components/Lookup/HostFilterLookup.js:328 msgid "Please select an organization before editing the host filter" msgstr "请在编辑主机过滤器前选择机构" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "Pod 规格覆写" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "策略实例最小值" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:38 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "策略实例百分比" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "从外部 secret 管理系统填充字段" -#: components/Lookup/HostFilterLookup.jsx:287 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" @@ -5754,130 +5863,141 @@ msgid "" "examples." msgstr "使用搜索过滤器填充此清单的主机。例如:ansible_facts.ansible_distribution:\"RedHat\"。如需语法和实例的更多信息,请参阅相关文档。请参阅 Ansible Tower 文档来获得更多信息。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:98 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "端口" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "在有多个父对象时运行此节点的先决条件。请参阅" -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -msgid "Press 'Enter' to add more answer choices. One answer choice per line." -msgstr "按 'Enter' 添加更多回答选择。每行一个回答选择。" +#: screens/Template/Survey/MultipleChoiceField.js:64 +msgid "" +"Press 'Enter' to add more answer choices. One answer\n" +"choice per line." +msgstr "" -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "按 Enter 进行编辑。按 ESC 停止编辑。" -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "预览" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "私钥密码" -#: screens/Template/shared/JobTemplateForm.jsx:558 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "权限升级" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "权限升级密码" -#: components/JobList/JobListItem.jsx:196 -#: 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 -#: components/TemplateList/TemplateListItem.jsx:268 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:213 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "项目" -#: components/PromptDetail/PromptProjectDetail.jsx:100 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:176 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:63 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "项目基本路径" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "项目同步" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "项目同步错误" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "项目更新" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "未找到项目。" -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "项目同步失败" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: 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 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 -#: util/getRelatedResourceDeleteDetails.js:201 -#: util/getRelatedResourceDeleteDetails.js:231 +#: util/getRelatedResourceDeleteDetails.js:194 +#: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "项目" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "提升子组和主机" -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:628 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "提示" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "提示覆盖" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "启动时提示" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "提示 | {0}" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "提示的值" -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:176 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -5885,7 +6005,7 @@ msgid "" "documentation for more information and examples on patterns." msgstr "提供主机模式以进一步限制受 playbook 管理或影响的主机列表。允许使用多种模式。请参阅 Ansible 文档,以了解更多有关模式的信息和示例。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -5893,18 +6013,19 @@ msgid "" "information and examples on patterns." msgstr "提供主机模式以进一步限制受 playbook 管理或影响的主机列表。允许使用多种模式。请参阅 Ansible 文档,以了解更多有关模式的信息和示例。" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:159 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "为这个字段输入值或者选择「启动时提示」选项。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:270 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." -msgstr "使用 YAML 或 JSON 提供\n" +msgstr "" +"使用 YAML 或 JSON 提供\n" "键/值对。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -5912,788 +6033,818 @@ msgid "" "retrieving renewal or expanded subscriptions." msgstr "提供您的 Red Hat 或 Red Hat Satellite 凭证,可从可用许可证列表中进行选择。您使用的凭证会被保存,以供将来用于续订或扩展订阅。" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "提供您的 Red Hat 或 Red Hat Satellite 凭证,以便为 Ansible Automation Platform 启用 Insights。" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:629 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "部署回调 URL" -#: screens/Template/shared/JobTemplateForm.jsx:624 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "置备回调详情" -#: screens/Template/shared/JobTemplateForm.jsx:563 -#: screens/Template/shared/JobTemplateForm.jsx:566 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "置备回调" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "Pull" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "问题" -#: screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "RADIUS" -#: screens/Setting/SettingList.jsx:76 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "RADIUS 设置" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:201 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "RAM {0}" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "读取" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "最近的作业" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "最近的任务列表标签页" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "最近模板" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "最近模板列表标签页" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:88 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 +msgid "Recent jobs" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "接收者列表" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "接收者列表" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:148 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "Red Hat 订阅清单" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "Red Hat, Inc." -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "重定向 URI" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "重定向 URI" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "重定向到仪表板" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "重定向到订阅详情" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "请参阅" -#: screens/Template/shared/JobTemplateForm.jsx:434 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." msgstr "有关配置文件的详情请参阅 Ansible 文档。" -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "刷新令牌" -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:84 -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "刷新令牌过期" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: screens/Project/ProjectList/ProjectListItem.js:130 +msgid "Refresh for revision" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:132 +msgid "Refresh project revision" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "区域" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:157 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "registry 凭证" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "仅导入主机名与这个正则表达式匹配的主机。该过滤器在应用任何清单插件过滤器后作为后步骤使用。" -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "相关组" -#: components/JobList/JobListItem.jsx:129 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:369 -#: screens/Job/JobDetail/JobDetail.jsx:377 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 +msgid "Related search type" +msgstr "" + +#: components/Search/AdvancedSearch.js:146 +msgid "Related search type typeahead" +msgstr "" + +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "重新启动" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "重新启动作业" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "重新启动所有主机" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "重新启动失败的主机" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "重新启动于" -#: components/JobList/JobListItem.jsx:109 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "使用主机参数重新启动" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:147 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "远程归档" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "删除" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "删除所有节点" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "删除链接" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "删除节点" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "在进行更新前删除任何本地修改。" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "删除 {0} 访问" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "删除 {0} chip" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "删除此链接将会孤立分支的剩余部分,并导致它在启动时立即执行。" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "重复频率" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "替换" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:50 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "使用新值替换项" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "请求订阅" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "必需" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "资源名称" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "资源已删除" -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "资源" -#: components/TemplateList/TemplateListItem.jsx:133 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "此模板中缺少资源。" -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "恢复初始值。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "从给定的主机变量字典中检索启用的状态。启用的变量可以使用点符号来指定,如 'foo.bar'" -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:837 -#: screens/Job/JobOutput/JobOutput.jsx:840 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "返回" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "返回到订阅管理。" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "返回具有这个以外的值和其他过滤器的结果。" -#: components/Search/AdvancedSearch.jsx:106 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "返回满足这个及其他过滤器的结果。如果没有进行选择,这是默认的集合类型。" -#: components/Search/AdvancedSearch.jsx:112 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "返回满足这个或任何其他过滤器的结果。" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:42 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "恢复" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "恢复所有" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "全部恢复为默认值" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:49 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "将字段恢复到之前保存的值" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "恢复设置" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "恢复到工厂默认值。" -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:171 -#: screens/Project/ProjectList/ProjectListItem.jsx:156 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "修订" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "修订号" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: 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:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "角色" -#: components/ResourceAccessList/ResourceAccessList.jsx:143 -#: components/ResourceAccessList/ResourceAccessList.jsx:156 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "角色" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "运行" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "运行命令" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:123 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "运行命令" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "运行每" -#: components/Schedule/shared/ScheduleForm.jsx:154 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "运行频率" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "运行于" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "运行类型" -#: components/JobList/JobList.jsx:199 -#: components/TemplateList/TemplateListItem.jsx:105 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "运行中" -#: screens/Job/JobOutput/JobOutput.jsx:689 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "正在运行的处理程序" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:242 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "运行作业" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:170 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "运行作业" -#: screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "SAML" -#: screens/Setting/SettingList.jsx:80 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "SAML 设置" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "SCM 更新" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "社交" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "SSH 密码" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "SSL 连接" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "开始" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:93 -#: screens/Project/ProjectList/ProjectListItem.jsx:72 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "状态:" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "周六" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "周六" -#: components/AddRole/AddResourceRole.jsx:265 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:611 -#: components/Schedule/shared/ScheduleForm.jsx:617 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: 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 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "保存" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "保存并退出" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:232 -msgid "Save and enable log aggregation before testing the log aggregator." -msgstr "在测试日志聚合器前保存并启用日志聚合。" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "保存链路更改" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "保存成功!" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "调度详情" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "调度详情" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "调度处于活跃状态。" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "调度处于非活跃状态。" -#: components/Schedule/shared/ScheduleForm.jsx:531 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "调度缺少规则" -#: components/Schedule/ScheduleList/ScheduleList.jsx:222 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:157 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "调度" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:126 -#: screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "范围" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "滚动到第一" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "滚动到最后" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "滚动到下一个" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "滚动到前一个" -#: components/Lookup/HostFilterLookup.jsx:251 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "搜索" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "作业运行时会禁用搜索" -#: components/Search/AdvancedSearch.jsx:275 -#: components/Search/Search.jsx:286 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "搜索提交按钮" -#: components/Search/Search.jsx:275 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "搜索文本输入" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "秒" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: components/PromptDetail/PromptProjectDetail.jsx:96 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "秒" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "在左侧查看错误" -#: components/JobList/JobListItem.jsx:68 -#: components/Lookup/HostFilterLookup.jsx:318 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "选择" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "编辑凭证类型" -#: screens/Host/HostGroups/HostGroupsList.jsx:238 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "选择组" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "选择主机" -#: components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "选择输入" -#: screens/InstanceGroup/Instances/InstanceList.jsx:221 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "选择实例" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "选择项" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "从列表中选择项" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "选择标签" -#: components/AddRole/AddResourceRole.jsx:254 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "选择要应用的角色" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "选择团队" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "选择一个 JSON 格式的服务帐户密钥来自动填充以下字段。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "选择节点类型" -#: components/AddRole/AddResourceRole.jsx:190 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "选择资源类型" -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." msgstr "为工作模板选择一个分支。此分支应用于提示分支的所有作业模板节点。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 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:198 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "为工作流选择分支。此分支应用于提示分支的所有作业模板节点。" -#: screens/Credential/shared/CredentialForm.jsx:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "选择一个凭证类型" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "选择一个实例" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "选择要取消的作业" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "选择一个指标" -#: components/AdHocCommands/AdHocDetailsStep.jsx:79 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "选择一个模块" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "选择一个 playbook" -#: screens/Template/shared/JobTemplateForm.jsx:323 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "在编辑执行环境前选择一个项目。" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "选择要批准的行" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:104 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "选择要删除的行" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "选择要拒绝的行" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "选择要解除关联的行" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "导入一个订阅" -#: components/Schedule/shared/ScheduleForm.jsx:84 -msgid "Select a valid date and time for this field" -msgstr "为此字段选择有效日期和时间" - -#: components/HostForm/HostForm.jsx:54 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: components/Schedule/shared/ScheduleForm.jsx:88 -#: components/Schedule/shared/ScheduleForm.jsx:92 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: 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:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:40 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:145 -#: screens/User/shared/UserForm.jsx:119 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "为这个字段选择一个值" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "选择 Webhook 服务。" -#: components/DataListToolbar/DataListToolbar.jsx:73 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "选择所有" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "选择一个活动类型" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 msgid "Select an instance and a metric to show chart" msgstr "选择一个实例和一个指标来显示图表" -#: 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/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." +msgstr "" -#: screens/Project/shared/ProjectForm.jsx:204 +#: components/LaunchPrompt/steps/SurveyStep.js:128 +msgid "Select an option" +msgstr "" + +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "在编辑默认执行环境前选择一个机构。" -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -6702,327 +6853,333 @@ msgid "" "credential(s) become the defaults that can be updated at run time." msgstr "选择允许访问将运行此作业的节点的凭证。每种类型您只能选择一个凭证。对于机器凭证 (SSH),如果选中了“启动时提示”但未选择凭证,您需要在运行时选择机器凭证。如果选择了凭证并选中了“启动时提示”,则所选凭证将变为默认设置,可以在运行时更新。" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:88 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." msgstr "从位于项目基本路径的目录列表中进行选择。基本路径和 playbook 目录一起提供了用于定位 playbook 的完整路径。" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "从列表中选择项" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "选择作业类型" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: components/LaunchPrompt/steps/SurveyStep.js:174 +msgid "Select option(s)" +msgstr "" + +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "选择周期" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "选择要应用的角色" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132 msgid "Select source path" msgstr "选择源路径" -#: screens/Dashboard/DashboardGraph.jsx:148 -#: screens/Dashboard/DashboardGraph.jsx:149 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "选择状态" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "选择标签" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "选择您希望这个命令在内运行的执行环境。" -#: screens/Inventory/shared/SmartInventoryForm.jsx:90 +#: screens/Inventory/shared/SmartInventoryForm.js:89 msgid "Select the Instance Groups for this Inventory to run on." msgstr "选择要运行此清单的实例组。" -#: screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." -msgstr "选择要运行此机构的\n" +msgstr "" +"选择要运行此机构的\n" "实例组。" -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "选择要运行此机构的实例组。" -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "选择此令牌所属的应用程序。" -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 msgid "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts." msgstr "选择要在访问远程主机时用来运行命令的凭证。选择包含 Ansbile 登录远程主机所需的用户名和 SSH 密钥或密码的凭证。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 -msgid "Select the default execution environment for this organization to run on." -msgstr "选择要运行此机构的默认执行环境。" - -#: screens/Template/shared/JobTemplateForm.jsx:322 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "为此作业模板选择执行环境。" -#: components/Lookup/InventoryLookup.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:286 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." msgstr "选择包含此作业要管理的主机的清单。" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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:33 -#: components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "选择此主机要属于的清单。" -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: screens/Template/shared/JobTemplateForm.js:361 msgid "Select the playbook to be executed by this job." msgstr "选择要由此作业执行的 playbook。" -#: screens/Template/shared/JobTemplateForm.jsx:301 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "选择包含此作业要执行的 playbook 的项目。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "选择要使用的 Ansible Automation Platform 订阅。" -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "选择 {0}" -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:260 -#: components/AddRole/SelectRoleStep.jsx:27 -#: 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:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:120 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "已选择" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "选择的类别" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:233 -msgid "Send a test log message to the configured log aggregator." -msgstr "将测试日志消息发送到配置的日志聚合器。" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:93 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "发件人电子邮件" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "发件人电子邮件" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "9 月" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "服务账户 JSON 文件" -#: screens/Inventory/shared/InventorySourceForm.jsx:53 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "为这个字段设置值" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "设置数据应保留的天数。" -#: screens/Setting/SettingList.jsx:121 +#: screens/Setting/SettingList.js:117 msgid "Set preferences for data collection, logos, and logins" msgstr "为数据收集、日志和登录设置偏好" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "设置源路径为" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "设置实例在线或离线。如果离线,则不会将作业分配给此实例。" -#: screens/Application/shared/ApplicationForm.jsx:129 +#: screens/Application/shared/ApplicationForm.js:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "根据客户端设备的安全情况,设置为公共或机密。" -#: components/Search/AdvancedSearch.jsx:98 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "设置类型" -#: components/Search/AdvancedSearch.jsx:89 +#: components/Search/AdvancedSearch.js:298 +msgid "Set type disabled for related search field fuzzy searches" +msgstr "" + +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "设置类型选项" -#: components/Search/AdvancedSearch.jsx:92 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "设置类型 typeahead" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "将缩放设置为 100% 和中心图" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "设置类别" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "设置与工厂默认匹配。" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "设置名称" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "设置" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "显示" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:136 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: screens/Template/shared/JobTemplateForm.jsx:496 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "显示更改" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "显示所有组" -#: components/AdHocCommands/AdHocDetailsStep.jsx:201 -#: components/AdHocCommands/AdHocDetailsStep.jsx:202 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "显示更改" -#: components/LaunchPrompt/LaunchPrompt.jsx:110 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "显示描述" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "显示更少" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:130 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "只显示 root 组" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "使用 Azure AD 登陆" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "使用 GitHub 登陆" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "使用 GitHub Enterprise 登录" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "使用 GitHub Enterprise Organizations 登录" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "使用 GitHub Enterprise Teams 登录" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "使用 GitHub Organizations 登录" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "使用 GitHub Teams 登录" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "使用 Google 登录" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "使用 SAML 登陆" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "使用 SAML {samlIDP} 登录" -#: components/Search/Search.jsx:177 -#: components/Search/Search.jsx:178 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "简单键选择" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:235 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:310 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:339 -#: screens/Template/shared/JobTemplateForm.jsx:536 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "跳过标签" -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7031,7 +7188,7 @@ msgid "" "of tags." msgstr "如果有大型一个 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签很有用。使用逗号分隔多个标签。请参阅相关文档了解使用标签的详情。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -7039,265 +7196,271 @@ msgid "" "documentation for details on the usage of tags." msgstr "如果有一个大的 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "跳过" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "Slack" -#: screens/Host/HostList/SmartInventoryButton.jsx:19 -#: screens/Host/HostList/SmartInventoryButton.jsx:38 -#: screens/Host/HostList/SmartInventoryButton.jsx:42 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "智能清单" -#: screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "未找到智能清单" -#: components/Lookup/HostFilterLookup.jsx:283 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "智能主机过滤器" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "智能清单" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "前面的一些步骤有错误" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Host/HostList/SmartInventoryButton.js:12 +msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "请求测试此凭证和元数据时出错。" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "出现错误..." -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "排序" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "排序问题顺序" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:84 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 -#: screens/Inventory/shared/InventorySourceForm.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "源" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:130 -#: components/PromptDetail/PromptProjectDetail.jsx:79 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:75 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:332 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "源控制分支" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" msgstr "源控制分支/标签/提交" -#: components/PromptDetail/PromptProjectDetail.jsx:83 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "源控制凭证" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "源控制凭证类型" -#: components/PromptDetail/PromptProjectDetail.jsx:80 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:151 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "源控制 Refspec" -#: components/PromptDetail/PromptProjectDetail.jsx:75 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:146 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 +msgid "Source Control Revision" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "源控制类型" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:149 -#: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "源控制 URL" -#: components/JobList/JobList.jsx:180 -#: components/JobList/JobListItem.jsx:33 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "源控制更新" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "源电话号码" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:168 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "源变量" -#: components/JobList/JobListItem.jsx:170 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "源工作流作业" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "源控制分支" -#: screens/Inventory/shared/InventorySourceForm.jsx:160 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "源详情" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "源电话号码" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:249 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "源变量" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "来自项目的源" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "源" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." msgstr "以 JSON 格式指定 HTTP 标头。示例语法请参阅 Ansible Tower 文档。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." msgstr "指定通知颜色。可接受的颜色为十六进制颜色代码(示例:#3af 或者 #789abc)。" -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "指定令牌访问的范围" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "指定应该执行此节点的条件" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "标准错误" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "标准输出" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "标准错误标签页" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "标准输出标签页" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "开始" -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:83 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "开始时间" -#: components/Schedule/shared/ScheduleForm.jsx:120 -msgid "Start date/time" -msgstr "开始日期/时间" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "开始消息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:388 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "开始消息正文" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "启动同步进程" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "启动同步源" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "已开始" -#: components/JobList/JobList.jsx:193 -#: components/JobList/JobList.jsx:214 -#: components/JobList/JobListItem.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:221 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectListItem.jsx:140 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "状态" -#: screens/Job/JobOutput/JobOutput.jsx:665 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "提交" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7307,187 +7470,192 @@ msgid "" "flag to git submodule update." msgstr "子模块将跟踪其 master 分支(或在 .gitmodules 中指定的其他分支)的最新提交。如果没有,子模块将会保留在主项目指定的修订版本中。这等同于在 git submodule update 命令中指定 --remote 标志。" -#: screens/Setting/SettingList.jsx:131 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "订阅" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:36 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "订阅详情" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "Subscription Management" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "订阅清单" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "订阅选择模态" -#: screens/Setting/SettingList.jsx:136 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "订阅设置" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:73 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "订阅类型" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "订阅表" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "Subversion" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 -#: screens/Setting/shared/LoggingTestAlert.jsx:35 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "成功" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:397 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "成功信息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:406 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "成功消息正文" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "成功" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "成功的作业" -#: screens/Project/ProjectList/ProjectListItem.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "成功复制至剪贴板!" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "周日" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "周日" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:168 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "问卷调查" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "问卷调查列表" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "问卷调查预览" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "问卷调查切换" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "问卷调查预览 modal" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "可选的问卷调查问题" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:111 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "同步" -#: screens/Project/ProjectList/ProjectListItem.jsx:187 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "同步项目" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:210 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "全部同步" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:201 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "同步所有源" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "同步错误" -#: screens/Project/ProjectList/ProjectListItem.jsx:160 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "修订版本同步" -#: screens/Setting/SettingList.jsx:101 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Project/ProjectList/ProjectListItem.js:120 +msgid "Syncing" +msgstr "" + +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "系统" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 msgid "System Administrator" msgstr "系统管理员" -#: screens/User/UserDetail/UserDetail.jsx:44 -#: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:34 +#: screens/User/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "系统审核员" -#: screens/Job/JobOutput/JobOutput.jsx:702 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "系统警告" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "系统管理员对所有资源的访问权限是不受限制的。" -#: screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "TACACS+" -#: screens/Setting/SettingList.jsx:84 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "TACACS+ 设置" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "制表符" -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7496,7 +7664,7 @@ msgid "" "the usage of tags." msgstr "如果有一个大的 playbook,而您想要运行某个 play 或任务的特定部分,则标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -7504,198 +7672,196 @@ msgid "" "documentation for details on the usage of tags." msgstr "如果有一个大的 playbook,而您想要运行某个 play 或任务的特定部分,则标签会很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:132 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "注解的标签" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "注解的标签(可选)" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:175 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "目标 URL" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "任务" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "任务计数" -#: screens/Job/JobOutput/JobOutput.jsx:693 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "任务已启动" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "任务" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "团队(team)" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "团队角色" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "未找到团队" -#: components/AddRole/AddResourceRole.jsx:208 -#: components/AddRole/AddResourceRole.jsx:209 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: 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: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:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 -#: util/getRelatedResourceDeleteDetails.js:180 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 +#: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "团队" -#: screens/Template/Template.jsx:184 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "未找到模板" -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -msgid "Template type" -msgstr "模板类型" - -#: components/TemplateList/TemplateList.jsx:182 -#: components/TemplateList/TemplateList.jsx:239 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 -#: screens/Template/Templates.jsx:16 -#: util/getRelatedResourceDeleteDetails.js:224 -#: util/getRelatedResourceDeleteDetails.js:281 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 +#: util/getRelatedResourceDeleteDetails.js:217 +#: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "模板" -#: 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 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "测试" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "测试外部凭证" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "测试通知" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -msgid "Test logging" -msgstr "测试日志" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "测试通知" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "测试通过" -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "文本" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "文本区" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "文本区" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "未找到该值。请输入或选择一个有效值。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr "The" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:252 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "如果没有为作业模板配置时使用的执行环境。" -#: screens/Application/shared/ApplicationForm.jsx:87 +#: screens/Application/shared/ApplicationForm.js:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "用户必须用来获取此应用令牌的授予类型" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." msgstr "电子邮件通知停止尝试到达主机并超时之前所经过的时间(以秒为单位)。范围为 1 秒到 120 秒。" -#: screens/Template/shared/JobTemplateForm.jsx:490 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" "timeout." msgstr "取消作业前运行的时间(以秒为单位)。默认为 0,即没有作业超时。" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." msgstr "Grafana 服务器的基本 URL - /api/annotations 端点将自动添加到基本 Grafana URL。" -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "用于本机构内作业的执行环境。当项目、作业模板或工作流没有显式分配执行环境时,则会使用它。" -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "用于使用此项目的作业的执行环境。当作业模板或工作流没有在作业模板或工作流一级显式分配执行环境时,则会使用它。" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 +msgid "" +"The execution environment that will be used when launching\n" +"this job template. The resolved execution environment can be overridden by\n" +"explicitly assigning a different one to this job template." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." msgstr "第一次获取所有引用。第二次获取 Github 拉取请求号 62,在本示例中,分支需要为 \"pull/62/head\"。" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 msgid "The full image location, including the container registry, image name, and version tag." msgstr "完整镜像位置,包括容器 registry、镜像名称和版本标签。" -#: screens/Organization/shared/OrganizationForm.jsx:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "允许由此机构管理的最大主机数。默认值为 0,表示无限制。请参阅 Ansible 文档以了解更多详情。" -#: screens/Template/shared/JobTemplateForm.jsx:428 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -7704,295 +7870,300 @@ msgid "" "with a change to" msgstr "执行 playbook 时使用的并行或同步进程数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。要覆盖默认分叉数,可更改" -#: components/AdHocCommands/AdHocDetailsStep.jsx:188 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "执行 playbook 时使用的并行或同步进程数量。如果不输入值,则将使用 %s 配置文件 %s 中的默认值。您可以找到更多信息" -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "您请求的页面无法找到。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:168 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "用于将字段保留为清单中的目标主机的模式。留空、所有和 * 将针对清单中的所有主机。您可以找到有关 Ansible 主机模式的更多信息" -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/Project/ProjectList/ProjectListItem.js:118 +msgid "The project is currently syncing and the revision will be available after the sync is complete." +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 +msgid "The project must be synced before a revision is available." +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.js:128 +msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "已删除与该节点关联的资源。" -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." msgstr "变量名称的建议格式为小写字母并用下划线分隔(例如:foo_bar、user_id、host_name 等等)。不允许使用带空格的变量名称。" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 -msgid "The tower instance group cannot be deleted." -msgstr "tower 实例组不能被删除。" - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" "assigned to other projects. Create a new directory there and make\n" "sure the playbook files can be read by the \"awx\" system user,\n" -"or have {brandName} directly retrieve your playbooks from\n" +"or have {0} directly retrieve your playbooks from\n" "source control using the Source Control Type option above." -msgstr "{project_base_dir} 中没有可用的 playbook 目录。该目录可能是空目录,或所有内容都已被分配给其他项目。创建一个新目录并确保 playbook 文件可以被 \"awx\" 系统用户读取,或者使用上述的 Source Control Type 选项从源控制控制选项直接获取 {brandName}。" +msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:31 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "至少在一个输入中必须有一个值" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "登录时有问题。请重试。" -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "加载此内容时出错。请重新加载页面。" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "解析该文件时出错。请检查文件格式然后重试。" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "保存工作流时出错。" -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -msgid "There was an error testing the log aggregator." -msgstr "测试日志聚合器时出错。" +#: components/AdHocCommands/AdHocDetailsStep.js:68 +msgid "These are the modules that {0} supports running commands against." +msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -msgid "These are the modules that {brandName} supports running commands against." -msgstr "这些是 {brandName} 支持运行命令的模块。" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:146 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "这些是支持的标准运行命令运行的详细程度。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "这些参数与指定的模块一起使用。" -#: components/AdHocCommands/AdHocDetailsStep.jsx:118 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "这些参数与指定的模块一起使用。点击可以找到有关 {0} 的信息。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "第三" -#: screens/Template/shared/JobTemplateForm.jsx:153 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "此项目需要被更新" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "此操作将删除以下内容:" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "此操作将从所选团队中解除该用户的所有角色。" -#: screens/Team/TeamRoles/TeamRolesList.jsx:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "此操作将从 {0} 中解除以下角色关联:" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "此操作将解除以下关联:" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:114 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在此容器组中。确定要删除它吗?" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:282 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用此凭证。确定要删除它吗?" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "一些凭证目前正在使用此凭证类型,无法删除" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." msgstr "这些数据用于增强以后的软件发行版本,并提供 Insights for Ansible Automation Platform。" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" "streamline customer experience and success." msgstr "这些数据用于增强未来的 Tower 软件发行版本,并帮助简化客户体验和成功。" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用此执行环境。确定要删除它吗?" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "除非设置了启用的变量,否则此字段会被忽略。如果启用的变量与这个值匹配,则会在导入时启用主机。" -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "此字段不得为空白" -#: util/validators.jsx:100 +#: util/validators.js:121 msgid "This field must be a number" msgstr "此字段必须是数字" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:110 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 msgid "This field must be a number and have a value between {0} and {1}" msgstr "此字段必须是一个数字,且值介于 {0} 和 {1}" -#: util/validators.jsx:40 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "此字段必须是一个数字,且值介于 {min} 和 {max}" -#: util/validators.jsx:140 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "此字段必须是正则表达式" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: util/validators.jsx:84 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "此字段必须是整数。" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "此字段必须至少为 {0} 个字符" -#: util/validators.jsx:31 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "此字段必须至少为 {min} 个字符" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "此字段必须大于 0" -#: 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 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "此字段不能为空" -#: util/validators.jsx:74 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "此字段不得包含空格" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:105 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "此字段不能超过 {0} 个字符" -#: util/validators.jsx:22 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "此字段不能超过 {max} 个字符" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "此字段将使用指定的凭证从外部 secret 管理系统检索。" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在此实例组中。确定要删除它吗?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." -msgstr "此清单会应用到在这个工作流({0})中的所有作业模板,它会提示输入一个清单。" +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用此清单。确定要删除它吗?" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "依赖该清单源的其他资源目前正在使用此清单源。确定要删除它吗?" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "这是唯一显示客户端 secret 的时间。" -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "这是唯一显示令牌值和关联刷新令牌值的时间。" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:395 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用此任务模板。确定要删除它吗?" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:166 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "这个机构目前由其他资源使用。您确定要删除它吗?" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:225 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用这个项目。确定要删除它吗?" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "此项目当前处于同步状态,在同步过程完成前无法点击" -#: components/Schedule/ScheduleList/ScheduleList.jsx:122 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "此调度缺少清单" -#: components/Schedule/ScheduleList/ScheduleList.jsx:147 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "此调度缺少所需的调查值" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:64 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "这一步包含错误" -#: screens/User/shared/UserForm.jsx:146 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "此值与之前输入的密码不匹配。请确认该密码。" -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" msgstr "这会将此页中的所有配置值重置为其工厂默认值。确定要继续?" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "此工作流没有配置任何节点。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "其他资源目前正在使用此工作流作业模板。确定要删除它吗?" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "周四" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "周四" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "时间" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8002,7 +8173,7 @@ msgid "" "performed." msgstr "将项目视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新项目更新的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的项目更新。" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -8011,950 +8182,965 @@ msgid "" "inventory sync will be performed." msgstr "将清单同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的清单同步。" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "超时" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:103 -#: 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:489 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "超时" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "超时分钟" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "超时秒" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "切换图例" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "切换密码" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "切换工具" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "切换展开/折叠事件行" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "切换主机" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "切换实例" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "切换图例" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "切换通知批准" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "切换通知失败" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "切换通知开始" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "切换通知成功" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "删除调度" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "切换工具" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "令牌" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "令牌信息" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "未找到令牌" -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -msgid "Token type" -msgstr "令牌类型" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:106 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "令牌" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "工具" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "顶级分页" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:243 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "作业总数" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "节点总数" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:174 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "作业总数" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "跟踪子模块" -#: components/PromptDetail/PromptProjectDetail.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:75 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "跟踪分支中的最新提交" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:83 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "试用" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:167 -#: 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 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "True" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "周二" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "周二" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "Twilio" -#: components/JobList/JobList.jsx:215 -#: components/JobList/JobListItem.jsx:82 -#: 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:162 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:196 -#: components/TemplateList/TemplateList.jsx:221 -#: components/TemplateList/TemplateListItem.jsx:152 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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: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:241 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:159 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: 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: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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "类型" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "类型详情" -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -msgid "Type answer then click checkbox on right to select answer as default." -msgstr "键入回答,然后点右侧选择回答作为默认选项。" +#: screens/Template/Survey/MultipleChoiceField.js:61 +msgid "" +"Type answer then click checkbox on right to select answer as\n" +"default." +msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:111 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "" + +#: components/HostForm/HostForm.js:62 +msgid "Unable to change inventory on a host" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "不可用" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "撤消" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:125 +#: screens/Job/JobOutput/JobOutput.js:843 +msgid "Unfollow" +msgstr "" + +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "无限" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "无法访问" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "无法访问的主机数" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "无法访问的主机" -#: util/dates.jsx:89 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "未识别的日字符串" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "未保存的修改 modal" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:78 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "启动时更新修订" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -msgid "Update on Launch" -msgstr "启动时更新" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -msgid "Update on Project Update" -msgstr "更新项目更新" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:160 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "启动时更新" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:170 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "更新项目时更新" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "更新选项" -#: screens/Setting/SettingList.jsx:91 -msgid "Update settings pertaining to Jobs within {brandName}" -msgstr "更新 Tower 中与作业相关的设置" +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 +msgid "Update revision on job launch" +msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Setting/SettingList.js:87 +msgid "Update settings pertaining to Jobs within {0}" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "轮转 Webhook 密钥" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "更新" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr "上传一个 .zip 文件" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "上传一个包含了您的订阅的 Red Hat Subscription Manifest。要生成订阅清单,请访问红帽用户门户网站中的 <0>subscription allocations。" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -msgid "Use Fact Storage" -msgstr "使用事实存储" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "使用 SSL" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:109 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "使用 TLS" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" msgstr "当一个作业开始、成功或失败时使用的自定义消息来更改通知的内容。使用大括号来访问该作业的信息:" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:107 +#: screens/InstanceGroup/Instances/InstanceList.js:215 +msgid "Used Capacity" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "使用的容量" -#: components/AppContainer/PageHeaderToolbar.jsx:130 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "用户" -#: components/AppContainer/PageHeaderToolbar.jsx:158 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "用户详情" -#: screens/Setting/SettingList.jsx:120 -#: screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "用户界面" -#: screens/Setting/SettingList.jsx:125 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "用户界面设置" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "用户角色" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:129 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "用户类型" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "用户分析" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "用户和 Insights 分析" -#: components/AppContainer/PageHeaderToolbar.jsx:151 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "用户详情" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "未找到用户。" -#: screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "用户令牌" -#: components/AddRole/AddResourceRole.jsx:124 -#: components/AddRole/AddResourceRole.jsx:139 -#: components/ResourceAccessList/ResourceAccessList.jsx:127 -#: components/ResourceAccessList/ResourceAccessList.jsx:180 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:78 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:180 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:230 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:95 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:207 -#: screens/User/UserDetail/UserDetail.jsx:60 -#: screens/User/UserList/UserList.jsx:122 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:63 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "用户名" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "用户名/密码" -#: components/AddRole/AddResourceRole.jsx:198 -#: components/AddRole/AddResourceRole.jsx:199 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:117 -#: screens/User/UserList/UserList.jsx:157 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "用户" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "VMware vCenter" -#: components/HostForm/HostForm.jsx:99 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:249 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:119 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:221 -#: screens/Template/shared/JobTemplateForm.jsx:412 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "变量" -#: screens/Job/JobOutput/JobOutput.jsx:694 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "提示变量" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "Vault 密码" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "Vault 密码 | {credId}" -#: screens/Job/JobOutput/JobOutput.jsx:699 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "详细" -#: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:100 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:221 -#: screens/Template/shared/JobTemplateForm.jsx:462 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "详细程度" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:68 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "版本" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -msgid "View Activity Stream settings" -msgstr "查看活动流设置" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "查看 Azure AD 设置" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "查看凭证详情" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "查看详情" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "查看 GitHub 设置" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "查看 Google OAuth 2.0 设置" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "查看主机详情" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:169 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "查看清单脚本" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "查看清单组" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "查看清单主机详情" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "在 <0>www.json.org 查看 JSON 示例" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "查看作业详情" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "查看作业设置" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "查看 LDAP 设置" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "查看日志记录设置" -#: screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 +msgid "View Miscellaneous Authentication settings" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "查看杂项系统设置" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "查看机构详情" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "查看项目详情" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "查看 RADIUS 设置" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "查看 SAML 设置" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "查看调度" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "查看设置" -#: screens/Template/Template.jsx:168 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "查看问卷调查" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "查看 TACACS+ 设置" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "查看团队详情" -#: screens/Template/Template.jsx:265 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "查看模板详情" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "查看令牌" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "查看用户详情" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "查看用户界面设置" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "查看工作流批准详情" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "在 <0>docs.ansible.com 查看 YAML 示例" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "查看活动流" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "查看所有凭证。" -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "查看所有主机。" -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:97 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "查看所有清单。" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "查看所有清单主机。" -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "查看所有作业" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "查看所有作业" -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "查看所有通知模板。" -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "查看所有机构。" -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "查看所有项目。" -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "查看所有团队。" -#: screens/Template/Template.jsx:185 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "查看所有模板。" -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "查看所有用户。" -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "查看所有工作流批准。" -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "查看所有应用程序。" -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "查看所有凭证类型" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "查看所有执行环境" -#: screens/InstanceGroup/ContainerGroup.jsx:83 -#: screens/InstanceGroup/InstanceGroup.jsx:89 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "查看所有实例组" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "查看所有管理作业" -#: screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "查看所有设置" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "查看所有令牌。" -#: screens/Setting/SettingList.jsx:132 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "查看并编辑您的订阅信息" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "查看事件详情" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "查看清单源详情" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "查看作业 {0}" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "查看节点详情" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 msgid "View smart inventory host details" msgstr "查看智能清单主机详情" -#: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "视图" -#: components/TemplateList/TemplateListItem.jsx:157 -#: components/TemplateList/TemplateListItem.jsx:163 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "Visualizer" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "警告:" -#: components/JobList/JobList.jsx:198 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "等待" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:701 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "警告" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "警告:未保存的更改" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "我们无法找到与这个帐户关联的许可证。" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "我们无法找到与这个帐户关联的许可证。" -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:164 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "Webhook" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:249 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "Webhook 凭证" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "Webhook 凭证" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "Webhook 密钥" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "Webhook 服务" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "Webhook URL" -#: screens/Template/shared/JobTemplateForm.jsx:655 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:282 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "Webhook 详情" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Webhook 服务可通过向此 URL 发出 POST 请求来使用此工作流作业模板启动作业。" -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "Webhook 服务可以将此用作共享机密。" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 +msgid "Webhooks" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "周三" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "周三" -#: components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "周" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "周中日" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "周末日" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." msgstr "欢迎使用 Red Hat Ansible Automation Platform!请完成以下步骤以激活订阅。" -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "欢迎使用 {brandName}!" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:150 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" "external source." msgstr "如果没有选中,就会执行合并,将本地变量与外部源上的变量合并。" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." msgstr "如果没有选中,外部源上没有的本地子主机和组将在清单更新过程中保持不变。" -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "工作流" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "工作流已批准" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "未找到工作流批准。" -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "工作流批准" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "工作流作业" -#: components/JobList/JobListItem.jsx:158 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 -#: util/getRelatedResourceDeleteDetails.js:111 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 +#: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "工作流作业模板" -#: util/getRelatedResourceDeleteDetails.js:121 -#: util/getRelatedResourceDeleteDetails.js:163 -#: util/getRelatedResourceDeleteDetails.js:266 +#: util/getRelatedResourceDeleteDetails.js:114 +#: util/getRelatedResourceDeleteDetails.js:156 +#: util/getRelatedResourceDeleteDetails.js:259 msgid "Workflow Job Template Nodes" msgstr "工作流作业模板节点" -#: util/getRelatedResourceDeleteDetails.js:146 +#: util/getRelatedResourceDeleteDetails.js:139 msgid "Workflow Job Templates" msgstr "工作流作业模板" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "工作流链接" -#: components/TemplateList/TemplateList.jsx:200 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "工作流模板" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:433 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "工作流批准的消息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:445 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "工作流批准的消息正文" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:457 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "工作流拒绝的消息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:469 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "工作流拒绝的消息正文" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "工作流文档" @@ -8962,493 +9148,448 @@ msgstr "工作流文档" msgid "Workflow job templates" msgstr "工作流作业模板" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "工作流链接 modal" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "工作流节点查看 modal" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:481 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "工作流待处理信息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:493 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "工作流待处理信息正文" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:505 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "工作流超时信息" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:517 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "工作流超时信息正文" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "写入" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "YAML:" -#: components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "年" -#: components/Search/Search.jsx:256 +#: components/Search/Search.js:259 msgid "Yes" msgstr "是" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "您无法对以下工作流批准进行操作:{itemsUnableToApprove}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "您无法对以下工作流批准进行操作: {itemsUnableToDeny}" -#: components/Lookup/MultiCredentialsLookup.jsx:156 +#: components/Lookup/MultiCredentialsLookup.js: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:97 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "您没有权限删除以下组: {itemsUnableToDelete}" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "您没有删除 {pluralizedItemName} 的权限: {itemsUnableToDelete}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 -msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -msgstr "您没有删除 {pluralizedItemName} 的权限: {itemsUnableToDelete}。" - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "您没有权限取消关联: {itemsUnableToDisassociate}" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" msgstr "您可以在消息中应用多个可能的变量。如需更多信息,请参阅" -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "您的会话已过期。请登录以继续使用会话过期前所在的位置。" -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "您的会话即将到期" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "放大" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "缩小" -#: screens/Template/shared/JobTemplateForm.jsx:753 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js:152 msgid "a new webhook key will be generated on save." msgstr "在保存时会生成一个新的 WEBHOOK 密钥" -#: screens/Template/shared/JobTemplateForm.jsx:750 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js:142 msgid "a new webhook url will be generated on save." msgstr "在保存时会生成一个新的 WEBHOOK url" -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 +#: screens/Template/Survey/SurveyListItem.js:157 msgid "actions" msgstr "操作" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "点 Update Revision on Launch" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "批准" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "品牌徽标" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "取消删除" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -msgid "capacity adjustment" -msgstr "容量调整" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:240 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "命令" -#: components/PaginatedDataList/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "确认删除" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "确认解除关联" -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -msgid "copy to clipboard disabled" -msgstr "复制到剪贴板被禁用" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "删除错误" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "拒绝" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "解除关联" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "文档" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: 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/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "编辑" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "加密" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -msgid "expiration" -msgstr "过期" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "更多信息。" -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "更多信息" -#: components/AdHocCommands/AdHocDetailsStep.jsx:174 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "此处" -#: components/AdHocCommands/AdHocDetailsStep.jsx:125 -#: components/AdHocCommands/AdHocDetailsStep.jsx:194 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "此处。" -#: components/Lookup/HostFilterLookup.jsx:337 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "主机" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -msgid "instance counts" -msgstr "实例数" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -msgid "instance group used capacity" -msgstr "实例组使用的容量" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -msgid "instance host name" -msgstr "实例主机名" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -msgid "instance type" -msgstr "实例类型" - -#: components/Lookup/HostListItem.jsx:30 -msgid "inventory" -msgstr "清单(inventory)" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "项" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "LDAP 用户" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "登录类型" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "分钟" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "向下移动" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "向上移动" -#: components/Lookup/HostListItem.jsx:23 -msgid "name" -msgstr "名称" - -#: screens/Template/Survey/MultipleChoiceField.jsx:73 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "新选择" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "的" -#: components/AdHocCommands/AdHocDetailsStep.jsx:238 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "选项" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "页" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "页" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "按页面" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "重新启动作业" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -msgid "scope" -msgstr "范围" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "秒" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "秒" -#: components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "选择模块" -#: components/AdHocCommands/AdHocDetailsStep.jsx:135 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "选择详细程度" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "社交登录" -#: screens/Template/shared/JobTemplateForm.jsx:344 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "源控制分支" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "系统" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -msgid "team name" -msgstr "团队名称" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "超时" -#: components/AdHocCommands/AdHocDetailsStep.jsx:218 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "切换更改" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -msgid "token name" -msgstr "令牌名称" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "已更新" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "工作流作业模板 webhook 密钥" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "{0, plural, one {您确定要删除以下组吗?} other {您确定要删除以下组吗?}}" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "{0, plural, one {删除组?} other {删除组?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 +msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.js:236 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 {清单会处于一个待处理状态,直到最终的删除被处理完成。} other {清单会处于一个待处理状态,直到最终的删除被处理完成。}}" -#: components/JobList/JobList.jsx:242 +#: components/JobList/JobList.js:254 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 {选择的作业不能删除,因为没有足够的权限或处于作业运行状态} other {选择的作业不能删除,因为没有足够的权限或处于作业运行状}}" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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 {这个批准无法被删除,因为没有足够的权限或处于作业待处理状态} other {这个批准无法被删除,因为没有足够的权限或处于作业待处理状态}}" -#: screens/Credential/CredentialList/CredentialList.jsx:181 +#: screens/Credential/CredentialList/CredentialList.js:178 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 {这个凭证正被其他资源使用。您确定要删除它吗?} other {删除这些凭证可能会影响到其他依赖它的资源。您确定要删除吗?}}" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:173 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:170 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 {这个凭证类型正被其他凭证使用,无法删除。} other {正在被凭证使用的凭证类型不能被删除。您确定要删除吗?}}" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:190 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:187 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 {这个执行环境正被其他资源使用。您确定要删除它吗?} other {这些凭证可能正在被依赖它的其他资源使用。您确定要删除吗?}}" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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 {这个实例组正被其他资源使用。您确定要删除它吗?} other {删除这些实例组可能会影响到其他依赖它的资源。您确定要删除吗?}}" -#: screens/Inventory/InventoryList/InventoryList.jsx:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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 {这个清单正被一些模板使用。您确定要删除它吗?} other {删除这些清单可能会影响到其他依赖它的资源。您确定要删除吗?}}" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.js:186 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 {这个清单源正被依赖它的其他资源使用。您确定要删除它吗?} other {删除这些清单源可能会影响到其他依赖它的资源。您确定要删除吗?}}" -#: screens/Organization/OrganizationList/OrganizationList.jsx:176 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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 {这个机构正被其他资源使用。您确定要删除它吗?} other {删除这些机构可能会影响到其他依赖它的资源。您确定要删除吗?}}" -#: screens/Project/ProjectList/ProjectList.jsx:198 +#: screens/Project/ProjectList/ProjectList.js:241 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 {这个项目正被其他资源使用。您确定要删除它吗?} other {删除这些项目可能会影响到其他依赖它的资源。您确定要删除吗?}}" -#: components/TemplateList/TemplateList.jsx:242 +#: components/TemplateList/TemplateList.js:251 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 {这个模板正被一些工作流节点使用。您确定要删除它吗?} other {删除这些模板可能会影响到其他依赖它的工作流节点。您确定要删除吗?}}" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "{0, plural, one {您不能取消以下作业,因为它没有运行:} other {您不能取消以下作业,因为它们没有运行:}}" -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "{0, plural, one {您没有权限取消以下作业:} other {您没有权限取消以下作业:}}" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -msgid "{0}" -msgstr "{0}" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "{0} (删除)" -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "{0} 更多" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "{0} 个同步失败的源。" -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -msgid "{0}: {1}" -msgstr "{0}: {1}" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "{brandName} 徽标" -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "{dateStr} by <0>{username}" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:187 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "{forks, plural, one {# fork} other {# forks}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{intervalValue, plural, one {天} other {天}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{intervalValue, plural, one {小时} other {小时}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{intervalValue, plural, one {分钟} other {分钟}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{intervalValue, plural, one {月} other {月}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{intervalValue, plural, one {周} other {周}}" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{intervalValue, plural, one {年} other {年}}" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/Schedule/shared/DateTimePicker.js:49 +msgid "{label} date" +msgstr "" + +#: components/Schedule/shared/DateTimePicker.js:57 +msgid "{label} time" +msgstr "" + +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "{minutes} 分钟 {seconds} 秒" -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "{numJobsToCancel, plural, one {取消作业} other {取消作业}}" -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {这个操作将取消以下作业:} other {这个操作将取消以下作业:}}" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" -#: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/DetailList/NumberSinceDetail.js:19 +msgid "{number} since {dateStr}" +msgstr "" + +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} 列表" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr "{sessionCountdown, plural, one {因为无活跃行为,您将在 # 秒后登出} other {因为无活跃行为,您将在 # 秒后登出}}" - diff --git a/awx/ui_next/src/locales/zu/messages.po b/awx/ui_next/src/locales/zu/messages.po index 12ac252f57..1cb22a35ef 100644 --- a/awx/ui_next/src/locales/zu/messages.po +++ b/awx/ui_next/src/locales/zu/messages.po @@ -13,371 +13,361 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:43 msgid "(Limited to first 10)" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:97 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:162 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 +#: components/TemplateList/TemplateListItem.js:98 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:162 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:89 msgid "(Prompt on launch)" msgstr "" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:276 +#: screens/Credential/CredentialDetail/CredentialDetail.js:272 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -#~ msgid "- Enable Concurrent Jobs" -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 -#~ msgid "- Enable Webhooks" -#~ msgstr "" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:180 msgid "/ (project root)" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 -#: components/PromptDetail/PromptDetail.jsx:95 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 -#: screens/Template/shared/JobTemplateForm.jsx:214 +#: components/AdHocCommands/AdHocCommands.js:25 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:134 +#: components/PromptDetail/PromptDetail.js:95 +#: components/PromptDetail/PromptInventorySourceDetail.js:36 +#: components/PromptDetail/PromptJobTemplateDetail.js:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:71 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:106 +#: screens/Template/shared/JobTemplateForm.js:214 msgid "0 (Normal)" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:101 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:79 msgid "0 (Warning)" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:102 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:80 msgid "1 (Info)" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 -#: components/PromptDetail/PromptDetail.jsx:96 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:37 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:47 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 -#: screens/Template/shared/JobTemplateForm.jsx:215 +#: components/AdHocCommands/AdHocCommands.js:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:135 +#: components/PromptDetail/PromptDetail.js:96 +#: components/PromptDetail/PromptInventorySourceDetail.js:37 +#: components/PromptDetail/PromptJobTemplateDetail.js:47 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:72 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:107 +#: screens/Template/shared/JobTemplateForm.js:215 msgid "1 (Verbose)" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:103 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:81 msgid "2 (Debug)" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: components/PromptDetail/PromptDetail.jsx:97 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:38 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:48 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 -#: screens/Template/shared/JobTemplateForm.jsx:216 +#: components/AdHocCommands/AdHocCommands.js:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:136 +#: components/PromptDetail/PromptDetail.js:97 +#: components/PromptDetail/PromptInventorySourceDetail.js:38 +#: components/PromptDetail/PromptJobTemplateDetail.js:48 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:108 +#: screens/Template/shared/JobTemplateForm.js:216 msgid "2 (More Verbose)" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: components/PromptDetail/PromptDetail.jsx:98 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:39 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:49 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 -#: screens/Template/shared/JobTemplateForm.jsx:217 +#: components/AdHocCommands/AdHocCommands.js:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:137 +#: components/PromptDetail/PromptDetail.js:98 +#: components/PromptDetail/PromptInventorySourceDetail.js:39 +#: components/PromptDetail/PromptJobTemplateDetail.js:49 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:74 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:109 +#: screens/Template/shared/JobTemplateForm.js:217 msgid "3 (Debug)" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: components/PromptDetail/PromptDetail.jsx:99 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:40 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:50 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:218 +#: components/AdHocCommands/AdHocCommands.js:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:138 +#: components/PromptDetail/PromptDetail.js:99 +#: components/PromptDetail/PromptInventorySourceDetail.js:40 +#: components/PromptDetail/PromptJobTemplateDetail.js:50 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:110 +#: screens/Template/shared/JobTemplateForm.js:218 msgid "4 (Connection Debug)" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:111 msgid "5 (WinRM Debug)" msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:56 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:56 msgid "" "A refspec to fetch (passed to the Ansible git\n" "module). This parameter allows access to references via\n" "the branch field not otherwise available." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:124 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:127 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:279 msgid "ALL" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:231 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:231 msgid "API Service/Integration Key" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:288 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:288 msgid "API Token" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:303 msgid "API service/integration key" msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:125 +#: components/AppContainer/PageHeaderToolbar.js:125 msgid "About" msgstr "" -#: routeConfig.jsx:90 -#: screens/ActivityStream/ActivityStream.jsx:174 -#: screens/Credential/Credential.jsx:72 -#: screens/Credential/Credentials.jsx:28 -#: screens/Inventory/Inventories.jsx:58 -#: screens/Inventory/Inventory.jsx:63 -#: screens/Inventory/SmartInventory.jsx:66 -#: screens/Organization/Organization.jsx:124 -#: screens/Organization/Organizations.jsx:31 -#: screens/Project/Project.jsx:106 -#: screens/Project/Projects.jsx:29 -#: screens/Team/Team.jsx:56 -#: screens/Team/Teams.jsx:30 -#: screens/Template/Template.jsx:136 -#: screens/Template/Templates.jsx:44 -#: screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:90 +#: screens/ActivityStream/ActivityStream.js:170 +#: screens/Credential/Credential.js:72 +#: screens/Credential/Credentials.js:28 +#: screens/Inventory/Inventories.js:58 +#: screens/Inventory/Inventory.js:63 +#: screens/Inventory/SmartInventory.js:66 +#: screens/Organization/Organization.js:124 +#: screens/Organization/Organizations.js:31 +#: screens/Project/Project.js:106 +#: screens/Project/Projects.js:29 +#: screens/Team/Team.js:56 +#: screens/Team/Teams.js:30 +#: screens/Template/Template.js:136 +#: screens/Template/Templates.js:44 +#: screens/Template/WorkflowJobTemplate.js:122 msgid "Access" msgstr "" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:76 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:76 msgid "Access Token Expiration" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:295 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:418 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:418 msgid "Account SID" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:391 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:391 msgid "Account token" msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:50 msgid "Action" msgstr "" -#: components/JobList/JobList.jsx:221 -#: components/JobList/JobListItem.jsx:88 -#: components/Schedule/ScheduleList/ScheduleList.jsx:168 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:111 -#: components/TemplateList/TemplateList.jsx:226 -#: components/TemplateList/TemplateListItem.jsx:177 -#: 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:147 -#: screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:36 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:161 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74 -#: screens/Host/HostGroups/HostGroupItem.jsx:34 -#: screens/Host/HostGroups/HostGroupsList.jsx:182 -#: screens/Host/HostList/HostList.jsx:168 -#: screens/Host/HostList/HostListItem.jsx:42 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:275 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 -#: screens/InstanceGroup/Instances/InstanceList.jsx:217 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:153 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:146 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:184 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:38 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:137 -#: 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/InventorySourceListItem.jsx:94 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:118 -#: screens/Organization/OrganizationList/OrganizationList.jsx:153 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:87 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:17 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:164 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:79 -#: screens/Project/ProjectList/ProjectList.jsx:209 -#: screens/Project/ProjectList/ProjectListItem.jsx:214 -#: screens/Team/TeamList/TeamList.jsx:149 -#: screens/Team/TeamList/TeamListItem.jsx:47 -#: screens/User/UserList/UserList.jsx:166 -#: screens/User/UserList/UserListItem.jsx:70 +#: components/JobList/JobList.js:226 +#: components/JobList/JobListItem.js:95 +#: components/Schedule/ScheduleList/ScheduleList.js:168 +#: components/Schedule/ScheduleList/ScheduleListItem.js:111 +#: components/SelectedList/DraggableSelectedList.js:101 +#: components/TemplateList/TemplateList.js:231 +#: components/TemplateList/TemplateListItem.js:178 +#: screens/ActivityStream/ActivityStream.js:253 +#: screens/ActivityStream/ActivityStreamListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:46 +#: screens/Application/ApplicationsList/ApplicationsList.js:165 +#: screens/Credential/CredentialList/CredentialList.js:147 +#: screens/Credential/CredentialList/CredentialListItem.js:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:36 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:161 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:74 +#: screens/Host/HostGroups/HostGroupItem.js:34 +#: screens/Host/HostGroups/HostGroupsList.js:182 +#: screens/Host/HostList/HostList.js:164 +#: screens/Host/HostList/HostListItem.js:57 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:293 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:77 +#: screens/InstanceGroup/Instances/InstanceList.js:216 +#: screens/InstanceGroup/Instances/InstanceListItem.js:153 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:48 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:39 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:146 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:38 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:184 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:38 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:137 +#: screens/Inventory/InventoryList/InventoryList.js:211 +#: screens/Inventory/InventoryList/InventoryListItem.js:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:219 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:40 +#: screens/Inventory/InventorySources/InventorySourceList.js:219 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:100 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:73 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:118 +#: screens/Organization/OrganizationList/OrganizationList.js:153 +#: screens/Organization/OrganizationList/OrganizationListItem.js:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:87 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:17 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:163 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:79 +#: screens/Project/ProjectList/ProjectList.js:214 +#: screens/Project/ProjectList/ProjectListItem.js:211 +#: screens/Team/TeamList/TeamList.js:149 +#: screens/Team/TeamList/TeamListItem.js:47 +#: screens/User/UserList/UserList.js:165 +#: screens/User/UserList/UserListItem.js:60 msgid "Actions" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:61 -#: components/TemplateList/TemplateListItem.jsx:256 -#: screens/Host/HostDetail/HostDetail.jsx:77 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 +#: components/PromptDetail/PromptJobTemplateDetail.js:105 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:61 +#: components/TemplateList/TemplateListItem.js:257 +#: screens/Host/HostDetail/HostDetail.js:71 +#: screens/Host/HostList/HostListItem.js:81 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:45 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:74 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:30 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:116 msgid "Activity" msgstr "" -#: routeConfig.jsx:47 -#: screens/ActivityStream/ActivityStream.jsx:116 -#: screens/Setting/Settings.jsx:43 +#: routeConfig.js:47 +#: screens/ActivityStream/ActivityStream.js:112 +#: screens/Setting/Settings.js:43 msgid "Activity Stream" msgstr "" -#: screens/Setting/SettingList.jsx:105 -#~ msgid "Activity Stream settings" -#~ msgstr "" - -#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/ActivityStream/ActivityStream.js:115 msgid "Activity Stream type selector" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:113 msgid "Actor" msgstr "" -#: components/AddDropDownButton/AddDropDownButton.jsx:39 -#: components/PaginatedTable/ToolbarAddButton.jsx:15 +#: components/AddDropDownButton/AddDropDownButton.js:39 +#: components/PaginatedTable/ToolbarAddButton.js:15 msgid "Add" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js:14 msgid "Add Link" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js:70 msgid "Add Node" msgstr "" -#: screens/Template/Templates.jsx:48 +#: screens/Template/Templates.js:48 msgid "Add Question" msgstr "" -#: components/AddRole/AddResourceRole.jsx:183 +#: components/AddRole/AddResourceRole.js:183 msgid "Add Roles" msgstr "" -#: components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.js:180 msgid "Add Team Roles" msgstr "" -#: components/AddRole/AddResourceRole.jsx:177 +#: components/AddRole/AddResourceRole.js:177 msgid "Add User Roles" msgstr "" -#: components/Workflow/WorkflowStartNode.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:192 +#: components/Workflow/WorkflowStartNode.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:195 msgid "Add a new node" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:49 msgid "Add a new node between these two nodes" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:187 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:192 msgid "Add container group" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:132 msgid "Add existing group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:150 msgid "Add existing host" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:188 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:193 msgid "Add instance group" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:126 +#: screens/Inventory/InventoryList/InventoryList.js:126 msgid "Add inventory" msgstr "" -#: components/TemplateList/TemplateList.jsx:136 +#: components/TemplateList/TemplateList.js:141 msgid "Add job template" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:133 msgid "Add new group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:151 msgid "Add new host" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:64 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:64 msgid "Add resource type" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:127 +#: screens/Inventory/InventoryList/InventoryList.js:127 msgid "Add smart inventory" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:203 +#: screens/Team/TeamRoles/TeamRolesList.js:203 msgid "Add team permissions" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.js:201 msgid "Add user permissions" msgstr "" -#: components/TemplateList/TemplateList.jsx:137 +#: components/TemplateList/TemplateList.js:142 msgid "Add workflow template" msgstr "" -#: routeConfig.jsx:111 -#: screens/ActivityStream/ActivityStream.jsx:185 +#: routeConfig.js:111 +#: screens/ActivityStream/ActivityStream.js:181 msgid "Administration" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:87 -#: screens/Job/JobOutput/JobOutput.jsx:764 +#: components/DataListToolbar/DataListToolbar.js:125 +#: screens/Job/JobOutput/JobOutput.js:778 msgid "Advanced" msgstr "" -#: components/Search/AdvancedSearch.jsx:353 +#: components/Search/AdvancedSearch.js:357 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:335 +#: components/Search/AdvancedSearch.js:339 msgid "Advanced search value input" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:196 msgid "" "After every project update where the SCM revision\n" "changes, refresh the inventory from the selected source\n" @@ -385,390 +375,369 @@ msgid "" "like the Ansible inventory .ini file format." msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.js:504 msgid "After number of occurrences" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:39 -#~ msgid "Agree to end user license agreement" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:20 -#~ msgid "Agree to the end user license agreement and click submit." -#~ msgstr "" - -#: components/AlertModal/AlertModal.jsx:75 +#: components/AlertModal/AlertModal.js:75 msgid "Alert modal" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:48 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:248 +#: components/LaunchButton/ReLaunchDropDown.js:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:245 msgid "All" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:134 +#: screens/Dashboard/DashboardGraph.js:134 msgid "All job types" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:159 +#: screens/Dashboard/DashboardGraph.js:159 msgid "All jobs" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:106 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:103 msgid "Allow Branch Override" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 -#~ msgid "Allow Provisioning Callbacks" -#~ msgstr "" - -#: components/PromptDetail/PromptProjectDetail.jsx:66 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: components/PromptDetail/PromptProjectDetail.js:66 +#: screens/Project/ProjectDetail/ProjectDetail.js:103 msgid "Allow branch override" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:107 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:104 msgid "" "Allow changing the Source Control branch or revision in a job\n" "template that uses this project." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:117 +#: screens/Application/shared/ApplicationForm.js:117 msgid "Allowed URIs list, space separated" msgstr "" -#: components/Workflow/WorkflowLegend.jsx:126 -#: components/Workflow/WorkflowLinkHelp.jsx:24 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:47 +#: components/Workflow/WorkflowLegend.js:126 +#: components/Workflow/WorkflowLinkHelp.js:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:47 msgid "Always" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:99 msgid "Amazon EC2" msgstr "" -#: components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.js:12 msgid "An error occurred" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 +#: components/LaunchPrompt/steps/useInventoryStep.js:35 msgid "An inventory must be selected" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:106 msgid "Ansible Tower" msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:99 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:96 msgid "Ansible Tower Documentation." msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:44 +#: screens/Template/Survey/SurveyQuestionForm.js:44 msgid "Answer type" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:172 +#: screens/Template/Survey/SurveyQuestionForm.js:172 msgid "Answer variable name" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:245 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:242 msgid "Any" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:84 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: screens/User/shared/UserTokenForm.jsx:47 +#: components/Lookup/ApplicationLookup.js:84 +#: screens/User/UserTokenDetail/UserTokenDetail.js:39 +#: screens/User/shared/UserTokenForm.js:47 msgid "Application" msgstr "" -#: screens/User/Users.jsx:36 -#~ msgid "Application Name" -#~ msgstr "" - -#: screens/User/UserTokenList/UserTokenListItem.jsx:42 -#~ msgid "Application access token" -#~ msgstr "" - -#: screens/Application/Applications.jsx:64 -#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.js:64 +#: screens/Application/Applications.js:67 msgid "Application information" msgstr "" -#: screens/User/UserTokenList/UserTokenList.jsx:117 -#: screens/User/UserTokenList/UserTokenList.jsx:128 +#: screens/User/UserTokenList/UserTokenList.js:117 +#: screens/User/UserTokenList/UserTokenList.js:128 msgid "Application name" msgstr "" -#: screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.js:93 msgid "Application not found." msgstr "" -#: components/Lookup/ApplicationLookup.jsx:96 -#: routeConfig.jsx:135 -#: screens/Application/Applications.jsx:25 -#: screens/Application/Applications.jsx:34 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:118 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.js:96 +#: routeConfig.js:135 +#: screens/Application/Applications.js:25 +#: screens/Application/Applications.js:34 +#: screens/Application/ApplicationsList/ApplicationsList.js:118 +#: screens/Application/ApplicationsList/ApplicationsList.js:153 #: util/getRelatedResourceDeleteDetails.js:208 msgid "Applications" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:202 +#: screens/ActivityStream/ActivityStream.js:198 msgid "Applications & Tokens" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:35 -#: components/NotificationList/NotificationListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:110 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:86 +#: components/NotificationList/NotificationListItem.js:35 +#: components/NotificationList/NotificationListItem.js:36 +#: components/Workflow/WorkflowLegend.js:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:83 msgid "Approval" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:187 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:192 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:57 msgid "Approve" msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:59 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:59 msgid "Approved" msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:52 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:52 msgid "Approved - {0}. See the Activity Stream for more information." msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:49 msgid "Approved by {0} - {1}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:123 +#: components/Schedule/shared/FrequencyDetailSubform.js:123 msgid "April" msgstr "" -#: components/JobCancelButton/JobCancelButton.jsx:87 +#: components/JobCancelButton/JobCancelButton.js:87 msgid "Are you sure you want to cancel this job?" msgstr "" -#: components/DeleteButton/DeleteButton.jsx:128 +#: components/DeleteButton/DeleteButton.js:128 msgid "Are you sure you want to delete:" msgstr "" -#: screens/Setting/shared/SharedFields.jsx:125 +#: screens/Setting/shared/SharedFields.js:119 msgid "Are you sure you want to disable local authentication? Doing so could impact users' ability to log in and the system administrator's ability to reverse this change." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:40 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:46 msgid "Are you sure you want to remove the node below:" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:43 msgid "Are you sure you want to remove this link?" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:53 msgid "Are you sure you want to remove this node?" msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:44 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:44 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:51 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:51 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:911 +#: screens/Job/JobOutput/JobOutput.js:925 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:101 -#: components/AdHocCommands/AdHocDetailsStep.jsx:103 +#: components/AdHocCommands/AdHocDetailsStep.js:101 +#: components/AdHocCommands/AdHocDetailsStep.js:103 msgid "Arguments" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:352 +#: screens/Job/JobDetail/JobDetail.js:365 msgid "Artifacts" msgstr "" -#: screens/InstanceGroup/Instances/InstanceList.jsx:187 -#: screens/User/UserTeams/UserTeamList.jsx:215 +#: screens/InstanceGroup/Instances/InstanceList.js:186 +#: screens/User/UserTeams/UserTeamList.js:214 msgid "Associate" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:245 -#: screens/User/UserRoles/UserRolesList.jsx:243 +#: screens/Team/TeamRoles/TeamRolesList.js:245 +#: screens/User/UserRoles/UserRolesList.js:243 msgid "Associate role error" msgstr "" -#: components/AssociateModal/AssociateModal.jsx:100 +#: components/AssociateModal/AssociateModal.js:100 msgid "Association modal" msgstr "" -#: components/LaunchPrompt/steps/SurveyStep.jsx:164 +#: components/LaunchPrompt/steps/SurveyStep.js:164 msgid "At least one value must be selected for this field." msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:143 +#: components/Schedule/shared/FrequencyDetailSubform.js:143 msgid "August" msgstr "" -#: screens/Setting/SettingList.jsx:50 +#: screens/Setting/SettingList.js:51 msgid "Authentication" msgstr "" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:89 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:89 msgid "Authorization Code Expiration" msgstr "" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:83 -#: screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:79 +#: screens/Application/shared/ApplicationForm.js:84 msgid "Authorization grant type" msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:121 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 msgid "Auto" msgstr "" -#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.js:46 msgid "Azure AD" msgstr "" -#: screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.js:56 msgid "Azure AD settings" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:148 -#: components/AddRole/AddResourceRole.jsx:286 -#: components/LaunchPrompt/LaunchPrompt.jsx:128 -#: components/Schedule/shared/SchedulePromptableFields.jsx:136 -#: 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 +#: components/AdHocCommands/AdHocCommandsWizard.js:125 +#: components/AddRole/AddResourceRole.js:286 +#: components/LaunchPrompt/LaunchPrompt.js:128 +#: components/Schedule/shared/SchedulePromptableFields.js:136 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:142 msgid "Back" msgstr "" -#: screens/Credential/Credential.jsx:64 +#: screens/Credential/Credential.js:64 msgid "Back to Credentials" msgstr "" -#: components/ContentError/ContentError.jsx:42 +#: components/ContentError/ContentError.js:42 msgid "Back to Dashboard." msgstr "" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:50 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:49 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:50 msgid "Back to Groups" msgstr "" -#: screens/Host/Host.jsx:45 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.js:45 +#: screens/Inventory/InventoryHost/InventoryHost.js:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:48 msgid "Back to Hosts" msgstr "" -#: screens/Inventory/Inventory.jsx:56 -#: screens/Inventory/SmartInventory.jsx:59 +#: screens/Inventory/Inventory.js:56 +#: screens/Inventory/SmartInventory.js:59 msgid "Back to Inventories" msgstr "" -#: screens/Job/Job.jsx:97 +#: screens/Job/Job.js:97 msgid "Back to Jobs" msgstr "" -#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.js:76 msgid "Back to Notifications" msgstr "" -#: screens/Organization/Organization.jsx:117 +#: screens/Organization/Organization.js:117 msgid "Back to Organizations" msgstr "" -#: screens/Project/Project.jsx:99 +#: screens/Project/Project.js:99 msgid "Back to Projects" msgstr "" -#: components/Schedule/Schedule.jsx:59 +#: components/Schedule/Schedule.js:59 msgid "Back to Schedules" msgstr "" -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:54 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:38 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:33 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:54 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:63 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:38 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:76 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:29 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:39 +#: screens/Setting/UI/UIDetail/UIDetail.js:54 msgid "Back to Settings" msgstr "" -#: screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.js:77 msgid "Back to Sources" msgstr "" -#: screens/Team/Team.jsx:49 +#: screens/Team/Team.js:49 msgid "Back to Teams" msgstr "" -#: screens/Template/Template.jsx:129 -#: screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.js:129 +#: screens/Template/WorkflowJobTemplate.js:115 msgid "Back to Templates" msgstr "" -#: screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.js:47 msgid "Back to Tokens" msgstr "" -#: screens/User/User.jsx:57 +#: screens/User/User.js:57 msgid "Back to Users" msgstr "" -#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.js:69 msgid "Back to Workflow Approvals" msgstr "" -#: screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.js:71 msgid "Back to applications" msgstr "" -#: screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.js:55 msgid "Back to credential types" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:57 msgid "Back to execution environments" msgstr "" -#: screens/InstanceGroup/ContainerGroup.jsx:68 -#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/ContainerGroup.js:68 +#: screens/InstanceGroup/InstanceGroup.js:69 msgid "Back to instance groups" msgstr "" -#: screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.js:98 msgid "Back to management jobs" msgstr "" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:64 msgid "" "Base path used for locating playbooks. Directories\n" "found inside this path will be listed in the playbook directory drop-down.\n" @@ -776,11 +745,11 @@ msgid "" "path used to locate playbooks." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:443 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:443 msgid "Basic auth password" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:30 msgid "" "Branch to checkout. In addition to branches,\n" "you can input tags, commit hashes, and arbitrary refs. Some\n" @@ -788,784 +757,742 @@ msgid "" "provide a custom refspec." msgstr "" -#: components/About/About.jsx:37 +#: components/About/About.js:37 msgid "Brand Image" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:161 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:161 msgid "Browse" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:47 -#~ 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/Credential/shared/CredentialFormFields/CredentialField.js:91 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:112 +msgid "Browse…" +msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:39 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:36 msgid "By default, we collect and transmit analytics data on the serice usage to Red Hat. There are two categories of data collected by the service. For more information, see <0>this Tower documentation page. Uncheck the following boxes to disable this feature." msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:127 +#: screens/InstanceGroup/Instances/InstanceListItem.js:127 msgid "CPU {0}" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:120 -#: components/PromptDetail/PromptProjectDetail.jsx:114 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:218 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:124 +#: components/PromptDetail/PromptInventorySourceDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:114 +#: screens/Project/ProjectDetail/ProjectDetail.js:214 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:121 msgid "Cache Timeout" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:189 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:185 msgid "Cache timeout" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:231 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:228 msgid "Cache timeout (seconds)" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:149 -#: components/AddRole/AddResourceRole.jsx:287 -#: components/AssociateModal/AssociateModal.jsx:116 -#: components/AssociateModal/AssociateModal.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:121 -#: components/DeleteButton/DeleteButton.jsx:124 -#: components/DisassociateButton/DisassociateButton.jsx:122 -#: components/DisassociateButton/DisassociateButton.jsx:125 -#: components/FormActionGroup/FormActionGroup.jsx:24 -#: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:129 -#: components/Lookup/HostFilterLookup.jsx:350 -#: components/Lookup/Lookup.jsx:186 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:281 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 -#: components/Schedule/shared/ScheduleForm.jsx:625 -#: components/Schedule/shared/ScheduleForm.jsx:630 -#: components/Schedule/shared/SchedulePromptableFields.jsx:137 -#: screens/Credential/shared/CredentialForm.jsx:347 -#: screens/Credential/shared/CredentialForm.jsx:352 -#: 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: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: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:227 -#: screens/User/UserRoles/UserRolesList.jsx:230 +#: components/AdHocCommands/AdHocCommandsWizard.js:126 +#: components/AddRole/AddResourceRole.js:287 +#: components/AssociateModal/AssociateModal.js:116 +#: components/AssociateModal/AssociateModal.js:121 +#: components/DeleteButton/DeleteButton.js:121 +#: components/DeleteButton/DeleteButton.js:124 +#: components/DisassociateButton/DisassociateButton.js:122 +#: components/DisassociateButton/DisassociateButton.js:125 +#: components/FormActionGroup/FormActionGroup.js:24 +#: components/FormActionGroup/FormActionGroup.js:29 +#: components/LaunchPrompt/LaunchPrompt.js:129 +#: components/Lookup/HostFilterLookup.js:357 +#: components/Lookup/Lookup.js:189 +#: components/PaginatedTable/ToolbarDeleteButton.js:281 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:38 +#: components/Schedule/shared/ScheduleForm.js:626 +#: components/Schedule/shared/ScheduleForm.js:631 +#: components/Schedule/shared/SchedulePromptableFields.js:137 +#: screens/Credential/shared/CredentialForm.js:344 +#: screens/Credential/shared/CredentialForm.js:349 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:100 +#: screens/Credential/shared/ExternalTestModal.js:98 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:107 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:63 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:100 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:106 +#: screens/Setting/shared/RevertAllAlert.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:32 +#: screens/Setting/shared/RevertFormActionGroup.js:38 +#: screens/Setting/shared/SharedFields.js:110 +#: screens/Setting/shared/SharedFields.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:229 +#: screens/Team/TeamRoles/TeamRolesList.js:232 +#: screens/Template/Survey/SurveyList.js:118 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:149 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:152 +#: screens/User/UserRoles/UserRolesList.js:227 +#: screens/User/UserRoles/UserRolesList.js:230 msgid "Cancel" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:105 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:105 msgid "Cancel Inventory Source Sync" msgstr "" -#: components/JobCancelButton/JobCancelButton.jsx:53 -#: screens/Job/JobOutput/JobOutput.jsx:887 -#: screens/Job/JobOutput/JobOutput.jsx:888 +#: components/JobCancelButton/JobCancelButton.js:53 +#: screens/Job/JobOutput/JobOutput.js:901 +#: screens/Job/JobOutput/JobOutput.js:902 msgid "Cancel Job" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:262 -#: screens/Project/ProjectList/ProjectListItem.jsx:222 +#: screens/Project/ProjectDetail/ProjectDetail.js:258 +#: screens/Project/ProjectList/ProjectListItem.js:219 msgid "Cancel Project Sync" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:264 +#: screens/Project/ProjectDetail/ProjectDetail.js:260 msgid "Cancel Sync" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:895 -#: screens/Job/JobOutput/JobOutput.jsx:898 +#: screens/Job/JobOutput/JobOutput.js:909 +#: screens/Job/JobOutput/JobOutput.js:912 msgid "Cancel job" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:42 msgid "Cancel link changes" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:34 msgid "Cancel link removal" msgstr "" -#: components/Lookup/Lookup.jsx:184 +#: components/Lookup/Lookup.js:187 msgid "Cancel lookup" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:37 msgid "Cancel node removal" msgstr "" -#: screens/Setting/shared/RevertAllAlert.jsx:29 +#: screens/Setting/shared/RevertAllAlert.js:29 msgid "Cancel revert" msgstr "" -#: components/JobList/JobListCancelButton.jsx:93 +#: components/JobList/JobListCancelButton.js:93 msgid "Cancel selected job" msgstr "" -#: components/JobList/JobListCancelButton.jsx:94 +#: components/JobList/JobListCancelButton.js:94 msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:77 msgid "Cancel subscription edit" msgstr "" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 -#~ msgid "Cancel sync" -#~ msgstr "" - -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 -#~ msgid "Cancel sync process" -#~ msgstr "" - -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 -#~ msgid "Cancel sync source" -#~ msgstr "" - -#: components/JobList/JobListItem.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:391 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:138 +#: components/JobList/JobListItem.js:105 +#: screens/Job/JobDetail/JobDetail.js:404 +#: screens/Job/JobOutput/shared/OutputToolbar.js:135 msgid "Cancel {0}" msgstr "" -#: components/JobList/JobList.jsx:206 -#: components/Workflow/WorkflowNodeHelp.jsx:95 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:20 +#: components/JobList/JobList.js:211 +#: components/Workflow/WorkflowNodeHelp.js:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:172 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:20 msgid "Canceled" msgstr "" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:129 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:129 msgid "" "Cannot enable log aggregator without providing\n" "logging aggregator host and logging aggregator type." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:274 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:292 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:76 msgid "Capacity" msgstr "" -#: screens/InstanceGroup/Instances/InstanceList.jsx:215 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:125 +#: screens/InstanceGroup/Instances/InstanceList.js:214 +#: screens/InstanceGroup/Instances/InstanceListItem.js:125 msgid "Capacity Adjustment" msgstr "" -#: components/Search/AdvancedSearch.jsx:213 +#: components/Search/AdvancedSearch.js:217 msgid "Case-insensitive version of contains" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.js:241 msgid "Case-insensitive version of endswith." msgstr "" -#: components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.js:204 msgid "Case-insensitive version of exact." msgstr "" -#: components/Search/AdvancedSearch.jsx:249 +#: components/Search/AdvancedSearch.js:253 msgid "Case-insensitive version of regex." msgstr "" -#: components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.js:229 msgid "Case-insensitive version of startswith." msgstr "" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:70 msgid "" "Change PROJECTS_ROOT when deploying\n" "{brandName} to change this location." msgstr "" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: screens/Job/JobOutput/shared/HostStatusBar.js:43 msgid "Changed" msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +#: screens/ActivityStream/ActivityStreamDetailButton.js:53 msgid "Changes" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:263 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:205 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:263 msgid "Channel" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 -#: screens/Template/shared/JobTemplateForm.jsx:209 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:102 +#: screens/Template/shared/JobTemplateForm.js:209 msgid "Check" msgstr "" -#: components/Search/AdvancedSearch.jsx:279 +#: components/Search/AdvancedSearch.js:283 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: components/Search/AdvancedSearch.jsx:285 +#: components/Search/AdvancedSearch.js:289 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:32 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:32 msgid "Choose a .json file" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:78 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:78 msgid "Choose a Notification Type" msgstr "" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:23 msgid "Choose a Playbook Directory" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:227 +#: screens/Project/shared/ProjectForm.js:224 msgid "Choose a Source Control Type" msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.js:102 msgid "Choose a Webhook Service" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 -#: screens/Template/shared/JobTemplateForm.jsx:202 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:95 +#: screens/Template/shared/JobTemplateForm.js:202 msgid "Choose a job type" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.js:81 msgid "Choose a module" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:148 +#: screens/Inventory/shared/InventorySourceForm.js:145 msgid "Choose a source" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:486 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:486 msgid "Choose an HTTP method" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:47 +#: screens/Template/Survey/SurveyQuestionForm.js:47 msgid "" "Choose an answer type or format you want as the prompt for the user.\n" "Refer to the Ansible Tower Documentation for more additional\n" "information about each option." msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:37 -#~ msgid "" -#~ "Choose an answer type or format you want as the prompt for the user.\n" -#~ "Refer to the Documentation for more additional\n" -#~ "information about each option." -#~ msgstr "" - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 -#~ msgid "Choose an email option" -#~ msgstr "" - -#: components/AddRole/SelectRoleStep.jsx:20 +#: components/AddRole/SelectRoleStep.js:20 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "" -#: components/AddRole/SelectResourceStep.jsx:78 +#: components/AddRole/SelectResourceStep.js:78 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "" -#: components/AddRole/AddResourceRole.jsx:193 +#: components/AddRole/AddResourceRole.js:193 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:72 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:69 msgid "Clean" msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:66 -#: screens/Job/JobOutput/JobOutput.jsx:808 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:92 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:113 +msgid "Clear" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.js:84 +#: screens/Job/JobOutput/JobOutput.js:822 msgid "Clear all filters" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:250 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:250 msgid "Clear subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:255 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:255 msgid "Clear subscription selection" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:260 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js:260 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:129 msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:71 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:71 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:150 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:153 msgid "Click to create a new link to this node." msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:122 +#: screens/Template/Survey/MultipleChoiceField.js:122 msgid "Click to toggle default value" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.js:168 msgid "Click to view job details" msgstr "" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:90 -#: screens/Application/Applications.jsx:81 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:86 +#: screens/Application/Applications.js:81 msgid "Client ID" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:236 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:236 msgid "Client Identifier" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:311 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:311 msgid "Client identifier" msgstr "" -#: screens/Application/Applications.jsx:94 +#: screens/Application/Applications.js:94 msgid "Client secret" msgstr "" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:100 -#: screens/Application/shared/ApplicationForm.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:96 +#: screens/Application/shared/ApplicationForm.js:126 msgid "Client type" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:102 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:102 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:169 msgid "Close" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:123 msgid "Close subscription modal" msgstr "" -#: components/CredentialChip/CredentialChip.jsx:11 +#: components/CredentialChip/CredentialChip.js:11 msgid "Cloud" msgstr "" -#: components/ExpandCollapse/ExpandCollapse.jsx:41 +#: components/ExpandCollapse/ExpandCollapse.js:41 msgid "Collapse" msgstr "" -#: components/AdHocCommands/AdHocPreviewStep.jsx:8 -#: components/JobList/JobList.jsx:186 -#: components/JobList/JobListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:81 -#: screens/Job/JobOutput/HostEventModal.jsx:135 +#: components/JobList/JobList.js:191 +#: components/JobList/JobListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:79 +#: screens/Job/JobOutput/HostEventModal.js:135 msgid "Command" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:57 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:53 msgid "Compliant" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:75 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:36 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:138 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 -#: screens/Template/shared/JobTemplateForm.jsx:605 +#: components/PromptDetail/PromptJobTemplateDetail.js:75 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:36 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:138 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:57 +#: screens/Template/shared/JobTemplateForm.js:605 msgid "Concurrent Jobs" msgstr "" -#: screens/Setting/shared/SharedFields.jsx:104 -#: screens/Setting/shared/SharedFields.jsx:110 +#: screens/Setting/shared/SharedFields.js:98 +#: screens/Setting/shared/SharedFields.js:104 msgid "Confirm" msgstr "" -#: components/DeleteButton/DeleteButton.jsx:108 -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:93 +#: components/DeleteButton/DeleteButton.js:108 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:93 msgid "Confirm Delete" msgstr "" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:193 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:193 msgid "Confirm Disable Local Authorization" msgstr "" -#: screens/User/shared/UserForm.jsx:88 +#: screens/User/shared/UserForm.js:100 msgid "Confirm Password" msgstr "" -#: components/JobCancelButton/JobCancelButton.jsx:69 +#: components/JobCancelButton/JobCancelButton.js:69 msgid "Confirm cancel job" msgstr "" -#: components/JobCancelButton/JobCancelButton.jsx:73 +#: components/JobCancelButton/JobCancelButton.js:73 msgid "Confirm cancellation" msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:27 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:27 msgid "Confirm delete" msgstr "" -#: screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/User/UserRoles/UserRolesList.js:218 msgid "Confirm disassociate" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:24 msgid "Confirm link removal" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:27 msgid "Confirm node removal" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:18 msgid "Confirm removal of all nodes" msgstr "" -#: screens/Setting/shared/RevertAllAlert.jsx:20 +#: screens/Setting/shared/RevertAllAlert.js:20 msgid "Confirm revert all" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:90 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:90 msgid "Confirm selection" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:238 +#: screens/Job/JobDetail/JobDetail.js:247 msgid "Container Group" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:58 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:70 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:48 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:59 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:70 msgid "Container group" msgstr "" -#: screens/InstanceGroup/ContainerGroup.jsx:93 +#: screens/InstanceGroup/ContainerGroup.js:93 msgid "Container group not found." msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:123 -#: components/Schedule/shared/SchedulePromptableFields.jsx:131 +#: components/LaunchPrompt/LaunchPrompt.js:123 +#: components/Schedule/shared/SchedulePromptableFields.js:131 msgid "Content Loading" msgstr "" -#: components/AppContainer/AppContainer.jsx:138 +#: components/AppContainer/AppContainer.js:138 msgid "Continue" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:90 msgid "" "Control the level of output Ansible\n" "will produce for inventory source update jobs." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:468 +#: screens/Template/shared/JobTemplateForm.js:468 msgid "" "Control the level of output ansible will\n" "produce as the playbook executes." msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 -#~ msgid "Controller" -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:205 msgid "Convergence" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:239 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:240 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:236 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:237 msgid "Convergence select" msgstr "" -#: components/CopyButton/CopyButton.jsx:38 +#: components/CopyButton/CopyButton.js:38 msgid "Copy" msgstr "" -#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +#: screens/Credential/CredentialList/CredentialListItem.js:77 msgid "Copy Credential" msgstr "" -#: components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.js:46 msgid "Copy Error" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:91 msgid "Copy Execution Environment" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:131 +#: screens/Inventory/InventoryList/InventoryListItem.js:131 msgid "Copy Inventory" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:146 msgid "Copy Notification Template" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:254 +#: screens/Project/ProjectList/ProjectListItem.js:251 msgid "Copy Project" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:230 +#: components/TemplateList/TemplateListItem.js:231 msgid "Copy Template" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:185 -#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:181 +#: screens/Project/ProjectList/ProjectListItem.js:96 msgid "Copy full revision to clipboard." msgstr "" -#: components/About/About.jsx:27 +#: components/About/About.js:27 msgid "Copyright" msgstr "" -#: components/About/About.jsx:35 -#~ msgid "Copyright 2019 Red Hat, Inc." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:409 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.js:409 +#: screens/Template/shared/WorkflowJobTemplateForm.js:209 msgid "Create" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 -#~ msgid "Create Execution environments" -#~ msgstr "" - -#: screens/Application/Applications.jsx:26 -#: screens/Application/Applications.jsx:35 +#: screens/Application/Applications.js:26 +#: screens/Application/Applications.js:35 msgid "Create New Application" msgstr "" -#: screens/Credential/Credentials.jsx:14 -#: screens/Credential/Credentials.jsx:24 +#: screens/Credential/Credentials.js:14 +#: screens/Credential/Credentials.js:24 msgid "Create New Credential" msgstr "" -#: screens/Host/Hosts.jsx:16 -#: screens/Host/Hosts.jsx:25 +#: screens/Host/Hosts.js:16 +#: screens/Host/Hosts.js:25 msgid "Create New Host" msgstr "" -#: screens/Template/Templates.jsx:17 +#: screens/Template/Templates.js:17 msgid "Create New Job Template" msgstr "" -#: screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/NotificationTemplate/NotificationTemplates.js:14 +#: screens/NotificationTemplate/NotificationTemplates.js:21 msgid "Create New Notification Template" msgstr "" -#: screens/Organization/Organizations.jsx:17 -#: screens/Organization/Organizations.jsx:27 +#: screens/Organization/Organizations.js:17 +#: screens/Organization/Organizations.js:27 msgid "Create New Organization" msgstr "" -#: screens/Project/Projects.jsx:15 -#: screens/Project/Projects.jsx:25 +#: screens/Project/Projects.js:15 +#: screens/Project/Projects.js:25 msgid "Create New Project" msgstr "" -#: screens/Inventory/Inventories.jsx:89 -#: screens/ManagementJob/ManagementJobs.jsx:25 -#: screens/Project/Projects.jsx:34 -#: screens/Template/Templates.jsx:51 +#: screens/Inventory/Inventories.js:89 +#: screens/ManagementJob/ManagementJobs.js:25 +#: screens/Project/Projects.js:34 +#: screens/Template/Templates.js:51 msgid "Create New Schedule" msgstr "" -#: screens/Team/Teams.jsx:15 -#: screens/Team/Teams.jsx:25 +#: screens/Team/Teams.js:15 +#: screens/Team/Teams.js:25 msgid "Create New Team" msgstr "" -#: screens/User/Users.jsx:16 -#: screens/User/Users.jsx:27 +#: screens/User/Users.js:16 +#: screens/User/Users.js:27 msgid "Create New User" msgstr "" -#: screens/Template/Templates.jsx:18 +#: screens/Template/Templates.js:18 msgid "Create New Workflow Template" msgstr "" -#: screens/Host/HostList/SmartInventoryButton.jsx:18 +#: screens/Host/HostList/SmartInventoryButton.js:18 msgid "Create a new Smart Inventory with the applied filter" msgstr "" -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#~ msgid "Create container group" -#~ msgstr "" - -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:28 -#~ msgid "Create instance group" -#~ msgstr "" - -#: screens/InstanceGroup/InstanceGroups.jsx:18 -#: screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.js:38 +#: screens/InstanceGroup/InstanceGroups.js:48 msgid "Create new container group" msgstr "" -#: screens/CredentialType/CredentialTypes.jsx:23 +#: screens/CredentialType/CredentialTypes.js:23 msgid "Create new credential Type" msgstr "" -#: screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.js:14 msgid "Create new credential type" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:23 msgid "Create new execution environment" msgstr "" -#: screens/Inventory/Inventories.jsx:73 -#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.js:73 +#: screens/Inventory/Inventories.js:80 msgid "Create new group" msgstr "" -#: screens/Inventory/Inventories.jsx:64 -#: screens/Inventory/Inventories.jsx:78 +#: screens/Inventory/Inventories.js:64 +#: screens/Inventory/Inventories.js:78 msgid "Create new host" msgstr "" -#: screens/InstanceGroup/InstanceGroups.jsx:17 -#: screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroups.js:37 +#: screens/InstanceGroup/InstanceGroups.js:47 msgid "Create new instance group" msgstr "" -#: screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.js:17 msgid "Create new inventory" msgstr "" -#: screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.js:18 msgid "Create new smart inventory" msgstr "" -#: screens/Inventory/Inventories.jsx:83 +#: screens/Inventory/Inventories.js:83 msgid "Create new source" msgstr "" -#: screens/User/Users.jsx:35 +#: screens/User/Users.js:35 msgid "Create user token" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:115 -#: components/PromptDetail/PromptDetail.jsx:130 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:104 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:248 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:92 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:144 -#: screens/Host/HostDetail/HostDetail.jsx:93 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:70 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:90 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:110 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:83 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:215 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:140 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 -#: screens/Job/JobDetail/JobDetail.jsx:328 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:335 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:111 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:233 -#: screens/Team/TeamDetail/TeamDetail.jsx:43 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: screens/User/UserDetail/UserDetail.jsx:77 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: screens/User/UserTokenList/UserTokenList.jsx:140 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.js:115 +#: components/PromptDetail/PromptDetail.js:130 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:263 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:100 +#: screens/Credential/CredentialDetail/CredentialDetail.js:244 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:100 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:144 +#: screens/Host/HostDetail/HostDetail.js:85 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:67 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:91 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:106 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:42 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:79 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:211 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:44 +#: screens/Job/JobDetail/JobDetail.js:341 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:335 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:107 +#: screens/Project/ProjectDetail/ProjectDetail.js:229 +#: screens/Team/TeamDetail/TeamDetail.js:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:271 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:174 +#: screens/User/UserDetail/UserDetail.js:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:59 +#: screens/User/UserTokenList/UserTokenList.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:156 msgid "Created" msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:94 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:113 -#: components/AddRole/AddResourceRole.jsx:56 -#: components/AssociateModal/AssociateModal.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:176 -#: components/LaunchPrompt/steps/InventoryStep.jsx:89 -#: components/Lookup/CredentialLookup.jsx:191 -#: components/Lookup/InventoryLookup.jsx:138 -#: components/Lookup/InventoryLookup.jsx:194 -#: 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:194 -#: components/TemplateList/TemplateList.jsx:211 +#: components/AdHocCommands/AdHocCredentialStep.js:118 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:113 +#: components/AddRole/AddResourceRole.js:56 +#: components/AssociateModal/AssociateModal.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:176 +#: components/LaunchPrompt/steps/InventoryStep.js:89 +#: components/Lookup/CredentialLookup.js:194 +#: components/Lookup/InventoryLookup.js:151 +#: components/Lookup/InventoryLookup.js:207 +#: components/Lookup/MultiCredentialsLookup.js:194 +#: components/Lookup/OrganizationLookup.js:133 +#: components/Lookup/ProjectLookup.js:151 +#: components/NotificationList/NotificationList.js:206 +#: components/Schedule/ScheduleList/ScheduleList.js:194 +#: components/TemplateList/TemplateList.js:216 #: 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:135 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:138 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:104 -#: screens/Host/HostGroups/HostGroupsList.jsx:169 -#: screens/Host/HostList/HostList.jsx:154 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:133 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:126 -#: screens/Inventory/InventoryList/InventoryList.jsx:176 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:96 -#: screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:131 -#: screens/Project/ProjectList/ProjectList.jsx:197 -#: screens/Team/TeamList/TeamList.jsx:135 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:135 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:98 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:138 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:104 +#: screens/Host/HostGroups/HostGroupsList.js:169 +#: screens/Host/HostList/HostList.js:150 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:195 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:133 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:171 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:126 +#: screens/Inventory/InventoryList/InventoryList.js:188 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:176 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:96 +#: screens/Organization/OrganizationList/OrganizationList.js:138 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:131 +#: screens/Project/ProjectList/ProjectList.js:202 +#: screens/Team/TeamList/TeamList.js:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:109 msgid "Created By (Username)" msgstr "" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:79 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:166 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:166 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:74 msgid "Created by (username)" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:126 -#: 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:54 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 -#: 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/InsightsSubForm.jsx:43 -#: 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:42 -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:42 +#: components/PromptDetail/PromptInventorySourceDetail.js:126 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:40 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:90 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:53 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:194 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:41 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:80 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:43 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:42 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:42 #: util/getRelatedResourceDeleteDetails.js:166 msgid "Credential" msgstr "" @@ -1574,326 +1501,313 @@ msgstr "" msgid "Credential Input Sources" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:97 +#: components/Lookup/InstanceGroupsLookup.js:109 msgid "Credential Name" msgstr "" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:231 -#: screens/Credential/shared/CredentialForm.jsx:133 -#: screens/Credential/shared/CredentialForm.jsx:200 +#: screens/Credential/CredentialDetail/CredentialDetail.js:227 +#: screens/Credential/shared/CredentialForm.js:130 +#: screens/Credential/shared/CredentialForm.js:197 msgid "Credential Type" msgstr "" -#: routeConfig.jsx:115 -#: screens/ActivityStream/ActivityStream.jsx:187 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:124 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 -#: screens/CredentialType/CredentialTypes.jsx:13 -#: screens/CredentialType/CredentialTypes.jsx:22 +#: routeConfig.js:115 +#: screens/ActivityStream/ActivityStream.js:183 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:124 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:167 +#: screens/CredentialType/CredentialTypes.js:13 +#: screens/CredentialType/CredentialTypes.js:22 msgid "Credential Types" msgstr "" -#: screens/Credential/Credential.jsx:91 +#: screens/Credential/Credential.js:91 msgid "Credential not found." msgstr "" -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:30 msgid "Credential passwords" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:61 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:61 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:170 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:170 msgid "Credential to authenticate with a protected container registry." msgstr "" -#: screens/CredentialType/CredentialType.jsx:75 +#: screens/CredentialType/CredentialType.js:75 msgid "Credential type not found." msgstr "" -#: components/JobList/JobListItem.jsx:215 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:193 -#: components/LaunchPrompt/steps/useCredentialsStep.jsx:62 -#: components/Lookup/MultiCredentialsLookup.jsx:139 -#: components/Lookup/MultiCredentialsLookup.jsx:211 -#: components/PromptDetail/PromptDetail.jsx:158 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:193 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: components/TemplateList/TemplateListItem.jsx:314 +#: components/JobList/JobListItem.js:222 +#: components/LaunchPrompt/steps/CredentialsStep.js:193 +#: components/LaunchPrompt/steps/useCredentialsStep.js:62 +#: components/Lookup/MultiCredentialsLookup.js:139 +#: components/Lookup/MultiCredentialsLookup.js:211 +#: components/PromptDetail/PromptDetail.js:158 +#: components/PromptDetail/PromptJobTemplateDetail.js:193 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:317 +#: components/TemplateList/TemplateListItem.js:315 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: routeConfig.jsx:68 -#: screens/ActivityStream/ActivityStream.jsx:162 -#: screens/Credential/CredentialList/CredentialList.jsx:176 -#: screens/Credential/Credentials.jsx:13 -#: screens/Credential/Credentials.jsx:23 -#: screens/Job/JobDetail/JobDetail.jsx:266 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 -#: screens/Template/shared/JobTemplateForm.jsx:377 +#: routeConfig.js:68 +#: screens/ActivityStream/ActivityStream.js:158 +#: screens/Credential/CredentialList/CredentialList.js:175 +#: screens/Credential/Credentials.js:13 +#: screens/Credential/Credentials.js:23 +#: screens/Job/JobDetail/JobDetail.js:279 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:286 +#: screens/Template/shared/JobTemplateForm.js:377 #: util/getRelatedResourceDeleteDetails.js:90 msgid "Credentials" msgstr "" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:53 +#: components/LaunchPrompt/steps/credentialsValidator.js:53 msgid "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}" msgstr "" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.js:34 msgid "Current page" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:83 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:83 msgid "Custom pod spec" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:72 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:54 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:66 -#: screens/Project/ProjectList/ProjectListItem.jsx:188 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:72 +#: screens/Organization/OrganizationList/OrganizationListItem.js:54 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:66 +#: screens/Project/ProjectList/ProjectListItem.js:185 msgid "Custom virtual environment {0} must be replaced by an execution environment." msgstr "" -#: components/TemplateList/TemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:155 msgid "Custom virtual environment {0} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." msgstr "" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:55 -#~ msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." -#~ msgstr "" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:71 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:71 msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment. For more information about migrating to execution environments see <0>the documentation." msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:64 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:61 msgid "Customize messages…" msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:69 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:69 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:70 msgid "Customize pod specification" msgstr "" -#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:309 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:312 msgid "DELETED" msgstr "" -#: routeConfig.jsx:32 -#: screens/Dashboard/Dashboard.jsx:74 +#: routeConfig.js:32 +#: screens/Dashboard/Dashboard.js:74 msgid "Dashboard" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:142 +#: screens/ActivityStream/ActivityStream.js:138 msgid "Dashboard (all activity)" msgstr "" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:75 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:75 msgid "Data retention period" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:337 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:441 -#: components/Schedule/shared/ScheduleForm.jsx:145 +#: components/Schedule/shared/FrequencyDetailSubform.js:337 +#: components/Schedule/shared/FrequencyDetailSubform.js:441 +#: components/Schedule/shared/ScheduleForm.js:145 msgid "Day" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:263 -#: components/Schedule/shared/ScheduleForm.jsx:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:259 +#: components/Schedule/shared/ScheduleForm.js:156 msgid "Days of Data to Keep" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:112 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:108 msgid "Days remaining" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:756 +#: screens/Job/JobOutput/JobOutput.js:770 msgid "Debug" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:163 +#: components/Schedule/shared/FrequencyDetailSubform.js:163 msgid "December" msgstr "" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:97 +#: screens/Template/Survey/SurveyListItem.js:133 msgid "Default" msgstr "" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:39 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:209 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:39 +#: components/Lookup/ExecutionEnvironmentLookup.js:209 msgid "Default Execution Environment" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:233 -#: screens/Template/Survey/SurveyQuestionForm.jsx:241 -#: screens/Template/Survey/SurveyQuestionForm.jsx:248 +#: screens/Template/Survey/SurveyQuestionForm.js:233 +#: screens/Template/Survey/SurveyQuestionForm.js:241 +#: screens/Template/Survey/SurveyQuestionForm.js:248 msgid "Default answer" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:85 -#~ msgid "Default choice must be answered from the choices listed." -#~ msgstr "" - -#: screens/Setting/SettingList.jsx:97 +#: screens/Setting/SettingList.js:98 msgid "Define system-level features and functions" msgstr "" -#: components/DeleteButton/DeleteButton.jsx:76 -#: components/DeleteButton/DeleteButton.jsx:81 -#: components/DeleteButton/DeleteButton.jsx:91 -#: components/DeleteButton/DeleteButton.jsx:95 -#: components/DeleteButton/DeleteButton.jsx:115 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:158 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:235 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:246 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:250 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:273 -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:30 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:299 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:117 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:125 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 -#: 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:403 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:372 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:178 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:281 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:78 -#: screens/Team/TeamDetail/TeamDetail.jsx:66 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:410 -#: screens/Template/Survey/SurveyList.jsx:106 -#: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:252 -#: screens/User/UserDetail/UserDetail.jsx:99 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +#: components/DeleteButton/DeleteButton.js:76 +#: components/DeleteButton/DeleteButton.js:81 +#: components/DeleteButton/DeleteButton.js:91 +#: components/DeleteButton/DeleteButton.js:95 +#: components/DeleteButton/DeleteButton.js:115 +#: components/PaginatedTable/ToolbarDeleteButton.js:158 +#: components/PaginatedTable/ToolbarDeleteButton.js:235 +#: components/PaginatedTable/ToolbarDeleteButton.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:250 +#: components/PaginatedTable/ToolbarDeleteButton.js:273 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:30 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:392 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:123 +#: screens/Credential/CredentialDetail/CredentialDetail.js:295 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:133 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:114 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:134 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:240 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:161 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:64 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:67 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:72 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:76 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:99 +#: screens/Job/JobDetail/JobDetail.js:416 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:372 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:174 +#: screens/Project/ProjectDetail/ProjectDetail.js:277 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:75 +#: screens/Team/TeamDetail/TeamDetail.js:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:410 +#: screens/Template/Survey/SurveyList.js:106 +#: screens/Template/Survey/SurveyToolbar.js:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:248 +#: screens/User/UserDetail/UserDetail.js:103 +#: screens/User/UserTokenDetail/UserTokenDetail.js:78 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:214 msgid "Delete" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:126 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:126 msgid "Delete All Groups and Hosts" msgstr "" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:293 +#: screens/Credential/CredentialDetail/CredentialDetail.js:289 msgid "Delete Credential" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:130 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:126 msgid "Delete Execution Environment" msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:124 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:110 +#: screens/Host/HostDetail/HostDetail.js:116 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:106 msgid "Delete Host" msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:133 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:129 msgid "Delete Inventory" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:399 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:196 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:200 +#: screens/Job/JobDetail/JobDetail.js:412 +#: screens/Job/JobOutput/shared/OutputToolbar.js:193 +#: screens/Job/JobOutput/shared/OutputToolbar.js:197 msgid "Delete Job" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:404 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:404 msgid "Delete Job Template" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:368 msgid "Delete Notification" msgstr "" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:172 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:168 msgid "Delete Organization" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:275 +#: screens/Project/ProjectDetail/ProjectDetail.js:271 msgid "Delete Project" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Questions" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:392 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:388 msgid "Delete Schedule" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.js:92 msgid "Delete Survey" msgstr "" -#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Team/TeamDetail/TeamDetail.js:62 msgid "Delete Team" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:95 +#: screens/User/UserDetail/UserDetail.js:99 msgid "Delete User" msgstr "" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.js:74 msgid "Delete User Token" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:210 msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:242 msgid "Delete Workflow Job Template" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:138 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:138 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:141 msgid "Delete all nodes" msgstr "" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:123 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:119 msgid "Delete application" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:118 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:114 msgid "Delete credential type" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:255 +#: screens/Inventory/InventorySources/InventorySourceList.js:254 msgid "Delete error" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:111 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:108 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:120 msgid "Delete instance group" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:235 msgid "Delete inventory source" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:41 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:83 -#~ msgid "Delete on Update" -#~ msgstr "" - -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:161 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:157 msgid "Delete smart inventory" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:76 msgid "" "Delete the local repository in its entirety prior to\n" "performing an update. Depending on the size of the\n" @@ -1901,721 +1815,713 @@ msgid "" "of time required to complete an update." msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:51 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:92 +#: components/PromptDetail/PromptProjectDetail.js:51 +#: screens/Project/ProjectDetail/ProjectDetail.js:88 msgid "Delete the project before syncing" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:83 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:83 msgid "Delete this link" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:228 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:231 msgid "Delete this node" msgstr "" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:163 +#: components/PaginatedTable/ToolbarDeleteButton.js:163 msgid "Delete {pluralizedItemName}?" msgstr "" -#: components/DetailList/DeletedDetail.jsx:15 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:72 +#: components/DetailList/DeletedDetail.js:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:137 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:72 msgid "Deleted" msgstr "" -#: components/TemplateList/TemplateList.jsx:271 -#: screens/Credential/CredentialList/CredentialList.jsx:192 -#: screens/Inventory/InventoryList/InventoryList.jsx:261 -#: screens/Project/ProjectList/ProjectList.jsx:269 +#: components/TemplateList/TemplateList.js:279 +#: screens/Credential/CredentialList/CredentialList.js:191 +#: screens/Inventory/InventoryList/InventoryList.js:272 +#: screens/Project/ProjectList/ProjectList.js:277 msgid "Deletion Error" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:294 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:206 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:219 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:312 msgid "Deletion error" msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:38 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:38 msgid "Denied" msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:31 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:31 msgid "Denied - {0}. See the Activity Stream for more information." msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:28 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:28 msgid "Denied by {0} - {1}" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:30 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:45 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:57 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:196 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:201 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:30 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:45 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:53 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:57 msgid "Deny" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:758 +#: screens/Job/JobOutput/JobOutput.js:772 msgid "Deprecated" msgstr "" -#: components/HostForm/HostForm.jsx:104 -#: 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:190 -#: components/Schedule/shared/ScheduleForm.jsx:104 -#: components/TemplateList/TemplateList.jsx:195 -#: components/TemplateList/TemplateListItem.jsx:250 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:67 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:128 -#: screens/Application/shared/ApplicationForm.jsx:61 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:213 -#: screens/Credential/CredentialList/CredentialList.jsx:131 -#: screens/Credential/shared/CredentialForm.jsx:173 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:134 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:152 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:147 -#: screens/Host/HostDetail/HostDetail.jsx:81 -#: screens/Host/HostList/HostList.jsx:150 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: screens/Inventory/InventoryList/InventoryList.jsx:172 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:155 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:104 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: screens/Inventory/shared/InventoryForm.jsx:45 -#: screens/Inventory/shared/InventoryGroupForm.jsx:43 -#: screens/Inventory/shared/InventorySourceForm.jsx:117 -#: screens/Inventory/shared/SmartInventoryForm.jsx:60 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:72 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:71 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:49 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:101 -#: screens/Organization/OrganizationList/OrganizationList.jsx:134 -#: screens/Organization/shared/OrganizationForm.jsx:65 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:160 -#: screens/Project/ProjectList/ProjectList.jsx:174 -#: screens/Project/ProjectList/ProjectListItem.jsx:273 -#: screens/Project/shared/ProjectForm.jsx:181 -#: screens/Team/TeamDetail/TeamDetail.jsx:34 -#: screens/Team/TeamList/TeamList.jsx:127 -#: screens/Team/shared/TeamForm.jsx:37 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: 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:249 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:115 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 -#: screens/User/UserTeams/UserTeamList.jsx:188 -#: screens/User/UserTeams/UserTeamListItem.jsx:32 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: screens/User/UserTokenList/UserTokenList.jsx:122 -#: screens/User/shared/UserTokenForm.jsx:60 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:183 +#: components/HostForm/HostForm.js:105 +#: components/Lookup/ApplicationLookup.js:105 +#: components/Lookup/ApplicationLookup.js:123 +#: components/NotificationList/NotificationList.js:186 +#: components/PromptDetail/PromptDetail.js:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:252 +#: components/Schedule/ScheduleList/ScheduleList.js:190 +#: components/Schedule/shared/ScheduleForm.js:104 +#: components/TemplateList/TemplateList.js:200 +#: components/TemplateList/TemplateListItem.js:251 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:63 +#: screens/Application/ApplicationsList/ApplicationsList.js:128 +#: screens/Application/shared/ApplicationForm.js:61 +#: screens/Credential/CredentialDetail/CredentialDetail.js:209 +#: screens/Credential/CredentialList/CredentialList.js:131 +#: screens/Credential/shared/CredentialForm.js:170 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:134 +#: screens/CredentialType/shared/CredentialTypeForm.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:58 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:152 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:147 +#: screens/Host/HostDetail/HostDetail.js:73 +#: screens/Host/HostList/HostList.js:146 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:35 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:78 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:122 +#: screens/Inventory/InventoryList/InventoryList.js:184 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:151 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:100 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:34 +#: screens/Inventory/shared/InventoryForm.js:42 +#: screens/Inventory/shared/InventoryGroupForm.js:40 +#: screens/Inventory/shared/InventorySourceForm.js:114 +#: screens/Inventory/shared/SmartInventoryForm.js:57 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:99 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:71 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:146 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:49 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:97 +#: screens/Organization/OrganizationList/OrganizationList.js:134 +#: screens/Organization/shared/OrganizationForm.js:64 +#: screens/Project/ProjectDetail/ProjectDetail.js:156 +#: screens/Project/ProjectList/ProjectList.js:179 +#: screens/Project/ProjectList/ProjectListItem.js:270 +#: screens/Project/shared/ProjectForm.js:178 +#: screens/Team/TeamDetail/TeamDetail.js:34 +#: screens/Team/TeamList/TeamList.js:127 +#: screens/Team/shared/TeamForm.js:37 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:182 +#: screens/Template/Survey/SurveyQuestionForm.js:166 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:112 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:163 +#: screens/Template/shared/JobTemplateForm.js:249 +#: screens/Template/shared/WorkflowJobTemplateForm.js:115 +#: screens/User/UserOrganizations/UserOrganizationList.js:65 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:15 +#: screens/User/UserTeams/UserTeamList.js:188 +#: screens/User/UserTeams/UserTeamListItem.js:32 +#: screens/User/UserTokenDetail/UserTokenDetail.js:44 +#: screens/User/UserTokenList/UserTokenList.js:122 +#: screens/User/shared/UserTokenForm.js:60 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:87 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:183 msgid "Description" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:271 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:271 msgid "Destination Channels" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:181 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:181 msgid "Destination Channels or Users" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:290 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:290 msgid "Destination SMS Number(s)" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:408 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:408 msgid "Destination SMS number(s)" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:359 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:359 msgid "Destination channels" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:226 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:226 msgid "Destination channels or users" msgstr "" -#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 -#~ msgid "Detail coming soon :)" -#~ msgstr "" - -#: components/AdHocCommands/AdHocCommandsWizard.jsx:62 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:72 -#: components/ErrorDetail/ErrorDetail.jsx:73 -#: components/Schedule/Schedule.jsx:66 -#: screens/Application/Application/Application.jsx:77 -#: screens/Application/Applications.jsx:38 -#: screens/Credential/Credential.jsx:70 -#: screens/Credential/Credentials.jsx:27 -#: screens/CredentialType/CredentialType.jsx:62 -#: screens/CredentialType/CredentialTypes.jsx:26 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:26 -#: screens/Host/Host.jsx:52 -#: screens/Host/Hosts.jsx:28 -#: screens/InstanceGroup/ContainerGroup.jsx:75 -#: screens/InstanceGroup/InstanceGroup.jsx:76 -#: screens/InstanceGroup/InstanceGroups.jsx:30 -#: screens/InstanceGroup/InstanceGroups.jsx:36 -#: screens/Inventory/Inventories.jsx:60 -#: screens/Inventory/Inventories.jsx:85 -#: screens/Inventory/Inventory.jsx:62 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:58 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: screens/Inventory/InventorySource/InventorySource.jsx:88 -#: screens/Inventory/SmartInventory.jsx:65 -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: screens/Job/Job.jsx:103 -#: screens/Job/JobOutput/HostEventModal.jsx:113 -#: screens/Job/Jobs.jsx:28 -#: screens/ManagementJob/ManagementJobs.jsx:27 -#: screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: screens/NotificationTemplate/NotificationTemplates.jsx:24 -#: screens/Organization/Organization.jsx:123 -#: screens/Organization/Organizations.jsx:30 -#: screens/Project/Project.jsx:105 -#: screens/Project/Projects.jsx:28 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:61 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:45 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:83 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: screens/Setting/Settings.jsx:44 -#: screens/Setting/Settings.jsx:47 -#: screens/Setting/Settings.jsx:51 -#: screens/Setting/Settings.jsx:54 -#: screens/Setting/Settings.jsx:57 -#: screens/Setting/Settings.jsx:60 -#: screens/Setting/Settings.jsx:63 -#: screens/Setting/Settings.jsx:66 -#: screens/Setting/Settings.jsx:69 -#: screens/Setting/Settings.jsx:72 -#: screens/Setting/Settings.jsx:81 -#: screens/Setting/Settings.jsx:82 -#: screens/Setting/Settings.jsx:83 -#: screens/Setting/Settings.jsx:84 -#: screens/Setting/Settings.jsx:85 -#: screens/Setting/Settings.jsx:86 -#: screens/Setting/Settings.jsx:94 -#: screens/Setting/Settings.jsx:97 -#: screens/Setting/Settings.jsx:100 -#: screens/Setting/Settings.jsx:103 -#: screens/Setting/Settings.jsx:106 -#: screens/Setting/Settings.jsx:109 -#: screens/Setting/Settings.jsx:112 -#: screens/Setting/Settings.jsx:115 -#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 -#: screens/Team/Team.jsx:55 -#: screens/Team/Teams.jsx:28 -#: screens/Template/Template.jsx:135 -#: screens/Template/Templates.jsx:42 -#: screens/Template/WorkflowJobTemplate.jsx:121 -#: screens/User/User.jsx:63 -#: screens/User/UserToken/UserToken.jsx:54 -#: screens/User/Users.jsx:30 -#: screens/User/Users.jsx:36 -#: screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: screens/WorkflowApproval/WorkflowApprovals.jsx:23 +#: components/AdHocCommands/AdHocCommandsWizard.js:61 +#: components/AdHocCommands/AdHocCommandsWizard.js:71 +#: components/ErrorDetail/ErrorDetail.js:77 +#: components/Schedule/Schedule.js:66 +#: screens/Application/Application/Application.js:77 +#: screens/Application/Applications.js:38 +#: screens/Credential/Credential.js:70 +#: screens/Credential/Credentials.js:27 +#: screens/CredentialType/CredentialType.js:62 +#: screens/CredentialType/CredentialTypes.js:26 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:26 +#: screens/Host/Host.js:52 +#: screens/Host/Hosts.js:28 +#: screens/InstanceGroup/ContainerGroup.js:75 +#: screens/InstanceGroup/InstanceGroup.js:76 +#: screens/InstanceGroup/InstanceGroups.js:50 +#: screens/InstanceGroup/InstanceGroups.js:56 +#: screens/Inventory/Inventories.js:60 +#: screens/Inventory/Inventories.js:85 +#: screens/Inventory/Inventory.js:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:57 +#: screens/Inventory/InventoryHost/InventoryHost.js:73 +#: screens/Inventory/InventorySource/InventorySource.js:84 +#: screens/Inventory/SmartInventory.js:65 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:55 +#: screens/Job/Job.js:103 +#: screens/Job/JobOutput/HostEventModal.js:113 +#: screens/Job/Jobs.js:28 +#: screens/ManagementJob/ManagementJobs.js:27 +#: screens/NotificationTemplate/NotificationTemplate.js:83 +#: screens/NotificationTemplate/NotificationTemplates.js:24 +#: screens/Organization/Organization.js:123 +#: screens/Organization/Organizations.js:30 +#: screens/Project/Project.js:105 +#: screens/Project/Projects.js:28 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:61 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:70 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:45 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:83 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:47 +#: screens/Setting/Settings.js:44 +#: screens/Setting/Settings.js:47 +#: screens/Setting/Settings.js:51 +#: screens/Setting/Settings.js:54 +#: screens/Setting/Settings.js:57 +#: screens/Setting/Settings.js:60 +#: screens/Setting/Settings.js:63 +#: screens/Setting/Settings.js:66 +#: screens/Setting/Settings.js:69 +#: screens/Setting/Settings.js:72 +#: screens/Setting/Settings.js:81 +#: screens/Setting/Settings.js:82 +#: screens/Setting/Settings.js:83 +#: screens/Setting/Settings.js:84 +#: screens/Setting/Settings.js:85 +#: screens/Setting/Settings.js:86 +#: screens/Setting/Settings.js:94 +#: screens/Setting/Settings.js:97 +#: screens/Setting/Settings.js:100 +#: screens/Setting/Settings.js:103 +#: screens/Setting/Settings.js:106 +#: screens/Setting/Settings.js:109 +#: screens/Setting/Settings.js:112 +#: screens/Setting/Settings.js:115 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:46 +#: screens/Setting/UI/UIDetail/UIDetail.js:61 +#: screens/Team/Team.js:55 +#: screens/Team/Teams.js:28 +#: screens/Template/Template.js:135 +#: screens/Template/Templates.js:42 +#: screens/Template/WorkflowJobTemplate.js:121 +#: screens/User/User.js:63 +#: screens/User/UserToken/UserToken.js:54 +#: screens/User/Users.js:30 +#: screens/User/Users.js:36 +#: screens/WorkflowApproval/WorkflowApproval.js:76 +#: screens/WorkflowApproval/WorkflowApprovals.js:23 msgid "Details" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.js:111 msgid "Details tab" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:157 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:215 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:260 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:314 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:157 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:215 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:260 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:314 msgid "Disable SSL Verification" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:184 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:237 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:184 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:237 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:276 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:456 msgid "Disable SSL verification" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:57 -#: components/DisassociateButton/DisassociateButton.jsx:84 -#: components/DisassociateButton/DisassociateButton.jsx:92 -#: components/DisassociateButton/DisassociateButton.jsx:96 -#: components/DisassociateButton/DisassociateButton.jsx:116 -#: screens/Team/TeamRoles/TeamRolesList.jsx:223 -#: screens/User/UserRoles/UserRolesList.jsx:221 +#: components/DisassociateButton/DisassociateButton.js:57 +#: components/DisassociateButton/DisassociateButton.js:84 +#: components/DisassociateButton/DisassociateButton.js:92 +#: components/DisassociateButton/DisassociateButton.js:96 +#: components/DisassociateButton/DisassociateButton.js:116 +#: screens/Team/TeamRoles/TeamRolesList.js:223 +#: screens/User/UserRoles/UserRolesList.js:221 msgid "Disassociate" msgstr "" -#: screens/Host/HostGroups/HostGroupsList.jsx:217 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:222 +#: screens/Host/HostGroups/HostGroupsList.js:216 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:221 msgid "Disassociate group from host?" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:237 msgid "Disassociate host from group?" msgstr "" -#: screens/InstanceGroup/Instances/InstanceList.jsx:196 +#: screens/InstanceGroup/Instances/InstanceList.js:195 msgid "Disassociate instance from instance group?" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:211 msgid "Disassociate related group(s)?" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:223 +#: screens/User/UserTeams/UserTeamList.js:222 msgid "Disassociate related team(s)?" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:210 -#: screens/User/UserRoles/UserRolesList.jsx:208 +#: screens/Team/TeamRoles/TeamRolesList.js:210 +#: screens/User/UserRoles/UserRolesList.js:208 msgid "Disassociate role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:213 -#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.js:213 +#: screens/User/UserRoles/UserRolesList.js:211 msgid "Disassociate role!" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:18 +#: components/DisassociateButton/DisassociateButton.js:18 msgid "Disassociate?" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:46 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:87 +#: components/PromptDetail/PromptProjectDetail.js:46 +#: screens/Project/ProjectDetail/ProjectDetail.js:83 msgid "Discard local changes before syncing" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:483 +#: screens/Template/shared/JobTemplateForm.js:483 msgid "" "Divide the work done by this job template\n" "into the specified number of job slices, each running the\n" "same tasks against a portion of the inventory." msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:86 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:86 msgid "Documentation." msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:121 -#: components/CodeEditor/VariablesDetail.jsx:127 -#: components/CodeEditor/VariablesField.jsx:138 -#: components/CodeEditor/VariablesField.jsx:144 +#: components/CodeEditor/VariablesDetail.js:116 +#: components/CodeEditor/VariablesDetail.js:122 +#: components/CodeEditor/VariablesField.js:138 +#: components/CodeEditor/VariablesField.js:144 msgid "Done" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:180 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:185 +#: screens/Job/JobOutput/shared/OutputToolbar.js:177 +#: screens/Job/JobOutput/shared/OutputToolbar.js:182 msgid "Download Output" msgstr "" -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:81 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:90 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:111 +msgid "Drag a file here or browse to upload" +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:68 +msgid "Draggable list to reorder and remove selected items." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:43 +msgid "Dragging cancelled. List is unchanged." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:38 +msgid "Dragging item {id}. Item with index {oldIndex} in now {newIndex}." +msgstr "" + +#: components/SelectedList/DraggableSelectedList.js:32 +msgid "Dragging started for item id: {newId}." +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:81 msgid "E-mail" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:123 msgid "E-mail options" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:220 -#~ msgid "Each answer choice must be on a separate line." -#~ msgstr "" - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:168 msgid "" "Each time a job runs using this inventory,\n" "refresh the inventory from the selected source before\n" "executing job tasks." msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:99 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:96 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:382 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:386 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:114 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:116 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:286 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:111 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:124 -#: screens/Host/HostDetail/HostDetail.jsx:118 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:102 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 -#: 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:230 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:120 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:359 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:361 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:132 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:161 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:254 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 -#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 -#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:94 -#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:98 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 -#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:79 -#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx:83 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:114 -#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:118 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 -#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 -#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:174 -#: 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:379 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:381 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:222 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:224 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 -#: screens/User/UserDetail/UserDetail.jsx:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:378 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:382 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:110 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:112 +#: screens/Credential/CredentialDetail/CredentialDetail.js:282 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:107 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:120 +#: screens/Host/HostDetail/HostDetail.js:110 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:99 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:111 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:123 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:54 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:61 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:226 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:120 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:151 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:361 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:132 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:157 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:161 +#: screens/Project/ProjectDetail/ProjectDetail.js:250 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:94 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.js:98 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:165 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.js:105 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:79 +#: screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js:83 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:114 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js:118 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.js:85 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:170 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.js:84 +#: screens/Setting/UI/UIDetail/UIDetail.js:100 +#: screens/Setting/UI/UIDetail/UIDetail.js:105 +#: screens/Team/TeamDetail/TeamDetail.js:51 +#: screens/Team/TeamDetail/TeamDetail.js:55 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:379 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:381 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:220 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:208 +#: screens/User/UserDetail/UserDetail.js:92 msgid "Edit" msgstr "" -#: screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +#: screens/Credential/CredentialList/CredentialListItem.js:64 +#: screens/Credential/CredentialList/CredentialListItem.js:68 msgid "Edit Credential" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:42 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:37 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:42 msgid "Edit Credential Plugin Configuration" msgstr "" -#: screens/Application/Applications.jsx:37 -#: screens/Credential/Credentials.jsx:26 -#: screens/Host/Hosts.jsx:27 -#: screens/ManagementJob/ManagementJobs.jsx:28 -#: screens/NotificationTemplate/NotificationTemplates.jsx:23 -#: screens/Organization/Organizations.jsx:29 -#: screens/Project/Projects.jsx:27 -#: screens/Project/Projects.jsx:37 -#: screens/Setting/Settings.jsx:45 -#: screens/Setting/Settings.jsx:48 -#: screens/Setting/Settings.jsx:52 -#: screens/Setting/Settings.jsx:55 -#: screens/Setting/Settings.jsx:58 -#: screens/Setting/Settings.jsx:61 -#: screens/Setting/Settings.jsx:64 -#: screens/Setting/Settings.jsx:67 -#: screens/Setting/Settings.jsx:70 -#: screens/Setting/Settings.jsx:73 -#: screens/Setting/Settings.jsx:87 -#: screens/Setting/Settings.jsx:88 -#: screens/Setting/Settings.jsx:89 -#: screens/Setting/Settings.jsx:90 -#: screens/Setting/Settings.jsx:91 -#: screens/Setting/Settings.jsx:92 -#: screens/Setting/Settings.jsx:95 -#: screens/Setting/Settings.jsx:98 -#: screens/Setting/Settings.jsx:101 -#: screens/Setting/Settings.jsx:104 -#: screens/Setting/Settings.jsx:107 -#: screens/Setting/Settings.jsx:110 -#: screens/Setting/Settings.jsx:113 -#: screens/Setting/Settings.jsx:116 -#: screens/Team/Teams.jsx:27 -#: screens/Template/Templates.jsx:43 -#: screens/User/Users.jsx:29 +#: screens/Application/Applications.js:37 +#: screens/Credential/Credentials.js:26 +#: screens/Host/Hosts.js:27 +#: screens/ManagementJob/ManagementJobs.js:28 +#: screens/NotificationTemplate/NotificationTemplates.js:23 +#: screens/Organization/Organizations.js:29 +#: screens/Project/Projects.js:27 +#: screens/Project/Projects.js:37 +#: screens/Setting/Settings.js:45 +#: screens/Setting/Settings.js:48 +#: screens/Setting/Settings.js:52 +#: screens/Setting/Settings.js:55 +#: screens/Setting/Settings.js:58 +#: screens/Setting/Settings.js:61 +#: screens/Setting/Settings.js:64 +#: screens/Setting/Settings.js:67 +#: screens/Setting/Settings.js:70 +#: screens/Setting/Settings.js:73 +#: screens/Setting/Settings.js:87 +#: screens/Setting/Settings.js:88 +#: screens/Setting/Settings.js:89 +#: screens/Setting/Settings.js:90 +#: screens/Setting/Settings.js:91 +#: screens/Setting/Settings.js:92 +#: screens/Setting/Settings.js:95 +#: screens/Setting/Settings.js:98 +#: screens/Setting/Settings.js:101 +#: screens/Setting/Settings.js:104 +#: screens/Setting/Settings.js:107 +#: screens/Setting/Settings.js:110 +#: screens/Setting/Settings.js:113 +#: screens/Setting/Settings.js:116 +#: screens/Team/Teams.js:27 +#: screens/Template/Templates.js:43 +#: screens/User/Users.js:29 msgid "Edit Details" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:77 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:81 msgid "Edit Execution Environment" msgstr "" -#: screens/Host/HostGroups/HostGroupItem.jsx:37 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 +#: screens/Host/HostGroups/HostGroupItem.js:37 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:46 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:47 msgid "Edit Group" msgstr "" -#: screens/Host/HostList/HostListItem.jsx:46 -#: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 +#: screens/Host/HostList/HostListItem.js:61 +#: screens/Host/HostList/HostListItem.js:65 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:62 msgid "Edit Host" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:111 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:116 +#: screens/Inventory/InventoryList/InventoryListItem.js:111 +#: screens/Inventory/InventoryList/InventoryListItem.js:116 msgid "Edit Inventory" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js:14 msgid "Edit Link" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js:56 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:205 msgid "Edit Node" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:136 msgid "Edit Notification Template" msgstr "" -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:75 +#: screens/Organization/OrganizationList/OrganizationListItem.js:71 +#: screens/Organization/OrganizationList/OrganizationListItem.js:75 msgid "Edit Organization" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:240 -#: screens/Project/ProjectList/ProjectListItem.jsx:245 +#: screens/Project/ProjectList/ProjectListItem.js:237 +#: screens/Project/ProjectList/ProjectListItem.js:242 msgid "Edit Project" msgstr "" -#: screens/Template/Templates.jsx:49 +#: screens/Template/Templates.js:49 msgid "Edit Question" msgstr "" -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:115 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: screens/Template/Templates.jsx:54 +#: components/Schedule/ScheduleList/ScheduleListItem.js:115 +#: components/Schedule/ScheduleList/ScheduleListItem.js:119 +#: screens/Template/Templates.js:54 msgid "Edit Schedule" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:124 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:124 msgid "Edit Source" msgstr "" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:20 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:24 -#: screens/Team/TeamList/TeamListItem.jsx:50 -#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/Template/Survey/SurveyListItem.js:160 +msgid "Edit Survey" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:20 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:24 +#: screens/Team/TeamList/TeamListItem.js:50 +#: screens/Team/TeamList/TeamListItem.js:54 msgid "Edit Team" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:215 -#: components/TemplateList/TemplateListItem.jsx:221 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:100 +#: components/TemplateList/TemplateListItem.js:216 +#: components/TemplateList/TemplateListItem.js:222 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:100 msgid "Edit Template" msgstr "" -#: screens/User/UserList/UserListItem.jsx:73 -#: screens/User/UserList/UserListItem.jsx:77 +#: screens/User/UserList/UserListItem.js:63 +#: screens/User/UserList/UserListItem.js:67 msgid "Edit User" msgstr "" -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:49 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.js:49 +#: screens/Application/ApplicationsList/ApplicationListItem.js:53 msgid "Edit application" msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:39 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:39 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:43 msgid "Edit credential type" msgstr "" -#: screens/CredentialType/CredentialTypes.jsx:25 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:25 -#: screens/InstanceGroup/InstanceGroups.jsx:33 -#: screens/InstanceGroup/InstanceGroups.jsx:38 -#: screens/Inventory/Inventories.jsx:61 -#: screens/Inventory/Inventories.jsx:66 -#: screens/Inventory/Inventories.jsx:75 -#: screens/Inventory/Inventories.jsx:86 +#: screens/CredentialType/CredentialTypes.js:25 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:25 +#: screens/InstanceGroup/InstanceGroups.js:53 +#: screens/InstanceGroup/InstanceGroups.js:58 +#: screens/Inventory/Inventories.js:61 +#: screens/Inventory/Inventories.js:66 +#: screens/Inventory/Inventories.js:75 +#: screens/Inventory/Inventories.js:86 msgid "Edit details" msgstr "" -#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 -#~ msgid "Edit form coming soon :)" -#~ msgstr "" - -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:42 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:41 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:42 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:41 msgid "Edit group" msgstr "" -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:42 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:42 msgid "Edit host" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:80 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:80 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:84 msgid "Edit instance group" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js:70 msgid "Edit this link" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:202 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:205 msgid "Edit this node" msgstr "" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:84 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:84 msgid "Edit workflow" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:146 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:126 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.js:146 +#: screens/Job/JobOutput/shared/OutputToolbar.js:123 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:177 msgid "Elapsed" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:125 +#: screens/Job/JobOutput/shared/OutputToolbar.js:122 msgid "Elapsed Time" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:127 +#: screens/Job/JobOutput/shared/OutputToolbar.js:124 msgid "Elapsed time that the job ran" msgstr "" -#: components/NotificationList/NotificationList.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 -#: screens/User/UserDetail/UserDetail.jsx:64 -#: screens/User/shared/UserForm.jsx:72 +#: components/NotificationList/NotificationList.js:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:153 +#: screens/User/UserDetail/UserDetail.js:62 +#: screens/User/shared/UserForm.js:74 msgid "Email" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:130 msgid "Email Options" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:245 +#: screens/Template/shared/WorkflowJobTemplateForm.js:245 msgid "Enable Concurrent Jobs" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:612 +#: screens/Template/shared/JobTemplateForm.js:612 msgid "Enable Fact Storage" msgstr "" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:192 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:192 msgid "Enable HTTPS certificate verification" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 -#~ msgid "Enable Privilege Escalation" -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:586 -#: screens/Template/shared/JobTemplateForm.jsx:589 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:228 +#: screens/Template/shared/JobTemplateForm.js:586 +#: screens/Template/shared/JobTemplateForm.js:589 +#: screens/Template/shared/WorkflowJobTemplateForm.js:225 +#: screens/Template/shared/WorkflowJobTemplateForm.js:228 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 +#: screens/Template/shared/WorkflowJobTemplateForm.js:231 msgid "Enable Webhook for this workflow job template." msgstr "" -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#~ msgid "Enable Webhooks" -#~ msgstr "" - -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:136 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:136 msgid "Enable external logging" msgstr "" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:168 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.js:168 msgid "Enable log system tracking facts individually" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:219 -#: components/AdHocCommands/AdHocDetailsStep.jsx:222 +#: components/AdHocCommands/AdHocDetailsStep.js:219 +#: components/AdHocCommands/AdHocDetailsStep.js:222 msgid "Enable privilege escalation" msgstr "" -#: screens/Setting/SettingList.jsx:51 +#: screens/Setting/SettingList.js:52 msgid "Enable simplified login for your {0} applications" msgstr "" -#: screens/Setting/SettingList.jsx:56 -#~ msgid "Enable simplified login for your {brandName} applications" -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Template/shared/JobTemplateForm.js:592 msgid "Enable webhook for this template." msgstr "" -#: components/Lookup/HostFilterLookup.jsx:96 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 +#: components/Lookup/HostFilterLookup.js:96 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 msgid "Enabled" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:184 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:189 -#: components/PromptDetail/PromptProjectDetail.jsx:112 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:205 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:243 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: components/PromptDetail/PromptInventorySourceDetail.js:184 +#: components/PromptDetail/PromptJobTemplateDetail.js:189 +#: components/PromptDetail/PromptProjectDetail.js:112 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:97 +#: screens/Credential/CredentialDetail/CredentialDetail.js:257 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:201 +#: screens/Project/ProjectDetail/ProjectDetail.js:239 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:184 msgid "Enabled Options" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:260 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:190 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:257 msgid "Enabled Value" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:193 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:247 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:189 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:244 msgid "Enabled Variable" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:547 -#~ msgid "" -#~ "Enables creation of a provisioning\n" -#~ "callback URL. Using the URL a host can contact BRAND_NAME\n" -#~ "and request a configuration update using this job\n" -#~ "template." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:572 +#: screens/Template/shared/JobTemplateForm.js:572 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {0}\n" @@ -2623,15 +2529,7 @@ msgid "" "template." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:569 -#~ msgid "" -#~ "Enables creation of a provisioning\n" -#~ "callback URL. Using the URL a host can contact {BrandName}\n" -#~ "and request a configuration update using this job\n" -#~ "template." -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:227 +#: components/AdHocCommands/AdHocDetailsStep.js:227 msgid "" "Enables creation of a provisioning\n" "callback URL. Using the URL a host can contact {brandName}\n" @@ -2639,935 +2537,892 @@ msgid "" "template" msgstr "" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:152 -#: screens/Setting/shared/SettingDetail.jsx:74 +#: screens/Credential/CredentialDetail/CredentialDetail.js:148 +#: screens/Setting/shared/SettingDetail.js:74 msgid "Encrypted" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:488 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:540 +#: components/Schedule/shared/FrequencyDetailSubform.js:488 +#: components/Schedule/shared/FrequencyDetailSubform.js:540 msgid "End" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:14 +#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.js:14 msgid "End User License Agreement" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 -#~ msgid "End date/time" -#~ msgstr "" - #: components/Schedule/shared/buildRuleObj.js:99 msgid "End did not match an expected value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:209 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:209 msgid "End user license agreement" msgstr "" -#: screens/Host/HostList/SmartInventoryButton.jsx:15 +#: screens/Host/HostList/SmartInventoryButton.js:15 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:46 +#: screens/CredentialType/shared/CredentialTypeForm.js:43 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 -#~ msgid "Enter injectors using either JSON or YAML syntax. Refer to the documentation for example syntax." -#~ msgstr "" - -#: screens/CredentialType/shared/CredentialTypeForm.jsx:38 +#: screens/CredentialType/shared/CredentialTypeForm.js:35 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 -#~ msgid "Enter inputs using either JSON or YAML syntax. Refer to the documentation for example syntax." -#~ msgstr "" - -#: screens/Inventory/shared/SmartInventoryForm.jsx:99 +#: screens/Inventory/shared/SmartInventoryForm.js:96 msgid "" "Enter inventory variables using either JSON or YAML syntax.\n" "Use the radio button to toggle between the two. Refer to the\n" "Ansible Tower documentation for example syntax." msgstr "" -#: screens/Inventory/shared/SmartInventoryForm.jsx:100 -#~ msgid "" -#~ "Enter inventory variables using either JSON or YAML syntax.\n" -#~ "Use the radio button to toggle between the two. Refer to the\n" -#~ "documentation for example syntax." -#~ msgstr "" - -#: screens/Inventory/shared/InventoryForm.jsx:70 +#: screens/Inventory/shared/InventoryForm.js:67 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" -#: screens/Inventory/shared/InventoryForm.jsx:85 -#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the documentation for example syntax" -#~ msgstr "" - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:180 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:180 msgid "Enter one Annotation Tag per line, without commas." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:231 msgid "" "Enter one IRC channel or username per line. The pound\n" "symbol (#) for channels, and the at (@) symbol for users, are not\n" "required." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:364 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:364 msgid "" "Enter one Slack channel per line. The pound symbol (#)\n" "is required for channels." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:89 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:89 msgid "" "Enter one email address per line to create a recipient\n" "list for this type of notification." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:413 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:413 msgid "" "Enter one phone number per line to specify where to\n" "route SMS messages." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:403 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:403 msgid "" "Enter the number associated with the \"Messaging\n" "Service\" in Twilio in the format +18005550199." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js: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>Insights plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js: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:53 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js:53 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:60 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:35 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" -#: components/JobList/JobList.jsx:205 -#: components/Workflow/WorkflowNodeHelp.jsx:92 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:146 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:125 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:297 -#: screens/Job/JobOutput/JobOutput.jsx:761 +#: components/JobList/JobList.js:210 +#: components/Workflow/WorkflowNodeHelp.js:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:131 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:209 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:222 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:122 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:134 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:315 +#: screens/Job/JobOutput/JobOutput.js:775 msgid "Error" msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:281 +#: screens/Project/ProjectList/ProjectList.js:289 msgid "Error fetching updated project" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:435 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:435 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:141 msgid "Error message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:444 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:444 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:150 msgid "Error message body" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:595 -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:597 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:595 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:597 msgid "Error saving the workflow!" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:105 -#: components/CopyButton/CopyButton.jsx:49 -#: components/DeleteButton/DeleteButton.jsx:57 -#: components/HostToggle/HostToggle.jsx:70 -#: components/InstanceToggle/InstanceToggle.jsx:61 -#: components/JobList/JobList.jsx:280 -#: components/JobList/JobList.jsx:291 -#: components/LaunchButton/LaunchButton.jsx:161 -#: components/LaunchPrompt/LaunchPrompt.jsx:66 -#: components/NotificationList/NotificationList.jsx:246 -#: components/PaginatedTable/ToolbarDeleteButton.jsx:205 -#: components/ResourceAccessList/ResourceAccessList.jsx:234 -#: components/ResourceAccessList/ResourceAccessList.jsx:246 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:404 -#: components/Schedule/ScheduleList/ScheduleList.jsx:236 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:74 -#: components/TemplateList/TemplateList.jsx:274 -#: contexts/Config.jsx:90 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:160 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:307 -#: screens/Credential/CredentialList/CredentialList.jsx:195 -#: screens/Host/HostDetail/HostDetail.jsx:60 -#: screens/Host/HostDetail/HostDetail.jsx:133 -#: screens/Host/HostGroups/HostGroupsList.jsx:250 -#: screens/Host/HostList/HostList.jsx:224 -#: screens/InstanceGroup/Instances/InstanceList.jsx:248 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:168 -#: 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:119 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:254 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:194 -#: screens/Inventory/InventoryList/InventoryList.jsx:262 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:245 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:258 -#: 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:380 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:225 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:163 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:187 -#: screens/Organization/OrganizationList/OrganizationList.jsx:203 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:289 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:184 -#: screens/Project/ProjectList/ProjectList.jsx:270 -#: screens/Project/ProjectList/ProjectList.jsx:282 -#: screens/Project/shared/ProjectSyncButton.jsx:62 -#: screens/Team/TeamDetail/TeamDetail.jsx:74 -#: screens/Team/TeamList/TeamList.jsx:198 -#: screens/Team/TeamRoles/TeamRolesList.jsx:248 -#: screens/Team/TeamRoles/TeamRolesList.jsx:259 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:419 -#: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:260 -#: 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:246 -#: screens/User/UserRoles/UserRolesList.jsx:257 -#: screens/User/UserTeams/UserTeamList.jsx:266 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: screens/User/UserTokenList/UserTokenList.jsx:203 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:255 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: components/AdHocCommands/AdHocCommands.js:105 +#: components/CopyButton/CopyButton.js:49 +#: components/DeleteButton/DeleteButton.js:57 +#: components/HostToggle/HostToggle.js:70 +#: components/InstanceToggle/InstanceToggle.js:61 +#: components/JobList/JobList.js:288 +#: components/JobList/JobList.js:299 +#: components/LaunchButton/LaunchButton.js:161 +#: components/LaunchPrompt/LaunchPrompt.js:66 +#: components/NotificationList/NotificationList.js:246 +#: components/PaginatedTable/ToolbarDeleteButton.js:205 +#: components/ResourceAccessList/ResourceAccessList.js:234 +#: components/ResourceAccessList/ResourceAccessList.js:246 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:400 +#: components/Schedule/ScheduleList/ScheduleList.js:235 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:67 +#: components/Schedule/shared/SchedulePromptableFields.js:74 +#: components/TemplateList/TemplateList.js:282 +#: contexts/Config.js:90 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:131 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:159 +#: screens/Application/ApplicationsList/ApplicationsList.js:190 +#: screens/Credential/CredentialDetail/CredentialDetail.js:303 +#: screens/Credential/CredentialList/CredentialList.js:194 +#: screens/Host/HostDetail/HostDetail.js:56 +#: screens/Host/HostDetail/HostDetail.js:125 +#: screens/Host/HostGroups/HostGroupsList.js:249 +#: screens/Host/HostList/HostList.js:219 +#: screens/InstanceGroup/Instances/InstanceList.js:247 +#: screens/InstanceGroup/Instances/InstanceListItem.js:168 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:143 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:275 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:286 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:56 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:115 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:253 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:193 +#: screens/Inventory/InventoryList/InventoryList.js:273 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:250 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:247 +#: screens/Inventory/InventorySources/InventorySourceList.js:244 +#: screens/Inventory/InventorySources/InventorySourceList.js:257 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:170 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:146 +#: screens/Inventory/shared/InventorySourceSyncButton.js:51 +#: screens/Login/Login.js:209 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:123 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:380 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:163 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:183 +#: screens/Organization/OrganizationList/OrganizationList.js:202 +#: screens/Project/ProjectDetail/ProjectDetail.js:285 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:183 +#: screens/Project/ProjectList/ProjectList.js:278 +#: screens/Project/ProjectList/ProjectList.js:290 +#: screens/Project/shared/ProjectSyncButton.js:62 +#: screens/Team/TeamDetail/TeamDetail.js:74 +#: screens/Team/TeamList/TeamList.js:197 +#: screens/Team/TeamRoles/TeamRolesList.js:248 +#: screens/Team/TeamRoles/TeamRolesList.js:259 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:419 +#: screens/Template/TemplateSurvey.js:130 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:256 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:165 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:180 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:305 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:340 +#: screens/User/UserDetail/UserDetail.js:111 +#: screens/User/UserList/UserList.js:190 +#: screens/User/UserRoles/UserRolesList.js:246 +#: screens/User/UserRoles/UserRolesList.js:257 +#: screens/User/UserTeams/UserTeamList.js:265 +#: screens/User/UserTokenDetail/UserTokenDetail.js:85 +#: screens/User/UserTokenList/UserTokenList.js:202 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:222 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:233 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:244 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:254 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:265 msgid "Error!" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:110 +#: components/CodeEditor/VariablesDetail.js:105 msgid "Error:" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:256 -#: screens/ActivityStream/ActivityStreamListItem.jsx:46 -#: screens/Job/JobOutput/JobOutput.jsx:728 +#: screens/ActivityStream/ActivityStream.js:252 +#: screens/ActivityStream/ActivityStreamListItem.js:46 +#: screens/Job/JobOutput/JobOutput.js:742 msgid "Event" msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.js:35 msgid "Event detail" msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +#: screens/ActivityStream/ActivityStreamDetailButton.js:36 msgid "Event detail modal" msgstr "" -#: screens/ActivityStream/ActivityStreamDescription.jsx:563 +#: screens/ActivityStream/ActivityStreamDescription.js:563 msgid "Event summary not available" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.js:221 msgid "Events" msgstr "" -#: components/Search/AdvancedSearch.jsx:194 +#: components/Search/AdvancedSearch.js:198 msgid "Exact match (default lookup if not specified)." msgstr "" -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.js:165 msgid "Exact search on id field." msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:26 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:26 msgid "Example URLs for GIT Source Control include:" msgstr "" -#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:20 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.js:20 msgid "Example URLs for Remote Archive Source Control include:" msgstr "" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:21 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:21 msgid "Example URLs for Subversion Source Control include:" msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:64 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:64 msgid "Examples include:" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:114 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:114 msgid "Examples:" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:48 msgid "Execute regardless of the parent node's final state." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:41 msgid "Execute when the parent node results in a failure state." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:34 msgid "Execute when the parent node results in a successful state." msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:86 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:40 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:103 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:189 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:211 +#: components/AdHocCommands/AdHocCommandsWizard.js:85 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:91 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:92 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:40 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:103 +#: components/Lookup/ExecutionEnvironmentLookup.js:158 +#: components/Lookup/ExecutionEnvironmentLookup.js:189 +#: components/Lookup/ExecutionEnvironmentLookup.js:211 msgid "Execution Environment" msgstr "" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:68 -#: components/TemplateList/TemplateListItem.jsx:151 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:68 +#: components/TemplateList/TemplateListItem.js:152 msgid "Execution Environment Missing" msgstr "" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:91 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:92 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:104 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:158 -#: routeConfig.jsx:140 -#: screens/ActivityStream/ActivityStream.jsx:208 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:122 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:22 -#: screens/Organization/Organization.jsx:127 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:80 -#: screens/Organization/Organizations.jsx:34 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:104 +#: routeConfig.js:140 +#: screens/ActivityStream/ActivityStream.js:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:122 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:184 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.js:22 +#: screens/Organization/Organization.js:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:80 +#: screens/Organization/Organizations.js:34 #: util/getRelatedResourceDeleteDetails.js:80 #: util/getRelatedResourceDeleteDetails.js:187 msgid "Execution Environments" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:229 +#: screens/Job/JobDetail/JobDetail.js:238 msgid "Execution Node" msgstr "" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:34 -#~ msgid "Execution environment image" -#~ msgstr "" - -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:109 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:109 msgid "Execution environment is missing or deleted." msgstr "" -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:27 -#~ msgid "Execution environment name" -#~ msgstr "" - -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:82 msgid "Execution environment not found." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 -#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 -#~ msgid "Execution environments" -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:26 msgid "Exit Without Saving" msgstr "" -#: components/ExpandCollapse/ExpandCollapse.jsx:52 +#: components/ExpandCollapse/ExpandCollapse.js:52 msgid "Expand" msgstr "" -#: components/CodeEditor/VariablesDetail.jsx:216 -#: components/CodeEditor/VariablesField.jsx:247 +#: components/DataListToolbar/DataListToolbar.js:94 +msgid "Expand all rows" +msgstr "" + +#: components/CodeEditor/VariablesDetail.js:211 +#: components/CodeEditor/VariablesField.js:247 msgid "Expand input" msgstr "" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:46 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:46 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:46 -#: screens/User/UserTokenList/UserTokenListItem.jsx:65 -#~ msgid "Expiration" -#~ msgstr "" - -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:142 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:32 -#: 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:136 -#: screens/User/UserTokenList/UserTokenList.jsx:179 -#: screens/User/UserTokenList/UserTokenListItem.jsx:28 -#: screens/User/UserTokens/UserTokens.jsx:88 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:141 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:32 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:149 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:170 +#: screens/User/UserTokenDetail/UserTokenDetail.js:54 +#: screens/User/UserTokenList/UserTokenList.js:136 +#: screens/User/UserTokenList/UserTokenList.js:178 +#: screens/User/UserTokenList/UserTokenListItem.js:28 +#: screens/User/UserTokens/UserTokens.js:88 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:93 msgid "Expires" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:92 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:88 msgid "Expires on" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:102 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:98 msgid "Expires on UTC" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:34 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:11 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:34 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:11 msgid "Expires on {0}" msgstr "" -#: components/JobList/JobListItem.jsx:243 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.js:250 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:125 msgid "Explanation" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:113 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:113 msgid "External Secret Management System" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:290 -#: components/AdHocCommands/AdHocDetailsStep.jsx:291 +#: components/AdHocCommands/AdHocDetailsStep.js:290 +#: components/AdHocCommands/AdHocDetailsStep.js:291 msgid "Extra variables" msgstr "" -#: components/Sparkline/Sparkline.jsx:35 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:43 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:125 -#: screens/Project/ProjectList/ProjectListItem.jsx:77 +#: components/Sparkline/Sparkline.js:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:43 +#: screens/Project/ProjectDetail/ProjectDetail.js:121 +#: screens/Project/ProjectList/ProjectListItem.js:74 msgid "FINISHED:" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:80 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:143 +#: components/PromptDetail/PromptJobTemplateDetail.js:80 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:143 msgid "Fact Storage" msgstr "" -#: screens/Host/Host.jsx:57 -#: 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:39 +#: screens/Host/Host.js:57 +#: screens/Host/HostFacts/HostFacts.js:40 +#: screens/Host/Hosts.js:29 +#: screens/Inventory/Inventories.js:69 +#: screens/Inventory/InventoryHost/InventoryHost.js:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.js:39 msgid "Facts" msgstr "" -#: components/JobList/JobList.jsx:204 -#: components/Workflow/WorkflowNodeHelp.jsx:89 -#: screens/Dashboard/shared/ChartTooltip.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:114 +#: components/JobList/JobList.js:209 +#: components/Workflow/WorkflowNodeHelp.js:89 +#: screens/Dashboard/shared/ChartTooltip.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:47 +#: screens/Job/JobOutput/shared/OutputToolbar.js:111 msgid "Failed" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:113 +#: screens/Job/JobOutput/shared/OutputToolbar.js:110 msgid "Failed Host Count" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:115 +#: screens/Job/JobOutput/shared/OutputToolbar.js:112 msgid "Failed Hosts" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:61 -#: screens/Dashboard/Dashboard.jsx:87 +#: components/LaunchButton/ReLaunchDropDown.js:61 +#: screens/Dashboard/Dashboard.js:87 msgid "Failed hosts" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:167 +#: screens/Dashboard/DashboardGraph.js:167 msgid "Failed jobs" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:270 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:269 msgid "Failed to approve one or more workflow approval." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:236 msgid "Failed to approve workflow approval." msgstr "" -#: components/ResourceAccessList/ResourceAccessList.jsx:238 +#: components/ResourceAccessList/ResourceAccessList.js:238 msgid "Failed to assign roles properly" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:251 -#: screens/User/UserRoles/UserRolesList.jsx:249 +#: screens/Team/TeamRoles/TeamRolesList.js:251 +#: screens/User/UserRoles/UserRolesList.js:249 msgid "Failed to associate role" msgstr "" -#: screens/Host/HostGroups/HostGroupsList.jsx:254 -#: screens/InstanceGroup/Instances/InstanceList.jsx:252 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:258 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 -#: screens/User/UserTeams/UserTeamList.jsx:270 +#: screens/Host/HostGroups/HostGroupsList.js:253 +#: screens/InstanceGroup/Instances/InstanceList.js:251 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:278 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:257 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:254 +#: screens/User/UserTeams/UserTeamList.js:269 msgid "Failed to associate." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:104 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:104 msgid "Failed to cancel Inventory Source Sync" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:263 -#: screens/Project/ProjectList/ProjectListItem.jsx:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:259 +#: screens/Project/ProjectList/ProjectListItem.js:221 msgid "Failed to cancel Project Sync" msgstr "" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 -#~ msgid "Failed to cancel inventory source sync." -#~ msgstr "" - -#: components/JobList/JobList.jsx:294 +#: components/JobList/JobList.js:302 msgid "Failed to cancel one or more jobs." msgstr "" -#: components/JobList/JobListItem.jsx:99 -#: screens/Job/JobDetail/JobDetail.jsx:392 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:139 +#: components/JobList/JobListItem.js:106 +#: screens/Job/JobDetail/JobDetail.js:405 +#: screens/Job/JobOutput/shared/OutputToolbar.js:136 msgid "Failed to cancel {0}" msgstr "" -#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +#: screens/Credential/CredentialList/CredentialListItem.js:85 msgid "Failed to copy credential." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:99 msgid "Failed to copy execution environment" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:139 +#: screens/Inventory/InventoryList/InventoryListItem.js:139 msgid "Failed to copy inventory." msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:262 +#: screens/Project/ProjectList/ProjectListItem.js:259 msgid "Failed to copy project." msgstr "" -#: components/TemplateList/TemplateListItem.jsx:235 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:154 +#: components/TemplateList/TemplateListItem.js:236 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:154 msgid "Failed to copy template." msgstr "" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:134 msgid "Failed to delete application." msgstr "" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:310 +#: screens/Credential/CredentialDetail/CredentialDetail.js:306 msgid "Failed to delete credential." msgstr "" -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:85 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:81 msgid "Failed to delete group {0}." msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:136 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Host/HostDetail/HostDetail.js:128 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:118 msgid "Failed to delete host." msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:251 msgid "Failed to delete inventory source {name}." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:150 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:146 msgid "Failed to delete inventory." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:422 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:422 msgid "Failed to delete job template." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:383 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:383 msgid "Failed to delete notification." msgstr "" -#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.js:193 msgid "Failed to delete one or more applications." msgstr "" -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:213 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:212 msgid "Failed to delete one or more credential types." msgstr "" -#: screens/Credential/CredentialList/CredentialList.jsx:198 +#: screens/Credential/CredentialList/CredentialList.js:197 msgid "Failed to delete one or more credentials." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:226 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:225 msgid "Failed to delete one or more execution environments" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:149 msgid "Failed to delete one or more groups." msgstr "" -#: screens/Host/HostList/HostList.jsx:227 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:197 +#: screens/Host/HostList/HostList.js:222 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:196 msgid "Failed to delete one or more hosts." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:300 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:318 msgid "Failed to delete one or more instance groups." msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:265 +#: screens/Inventory/InventoryList/InventoryList.js:276 msgid "Failed to delete one or more inventories." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:261 +#: screens/Inventory/InventorySources/InventorySourceList.js:260 msgid "Failed to delete one or more inventory sources." msgstr "" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:187 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:186 msgid "Failed to delete one or more job templates." msgstr "" -#: components/JobList/JobList.jsx:283 +#: components/JobList/JobList.js:291 msgid "Failed to delete one or more jobs." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:227 msgid "Failed to delete one or more notification template." msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:206 +#: screens/Organization/OrganizationList/OrganizationList.js:205 msgid "Failed to delete one or more organizations." msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:273 +#: screens/Project/ProjectList/ProjectList.js:281 msgid "Failed to delete one or more projects." msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:239 +#: components/Schedule/ScheduleList/ScheduleList.js:238 msgid "Failed to delete one or more schedules." msgstr "" -#: screens/Team/TeamList/TeamList.jsx:201 +#: screens/Team/TeamList/TeamList.js:200 msgid "Failed to delete one or more teams." msgstr "" -#: components/TemplateList/TemplateList.jsx:277 +#: components/TemplateList/TemplateList.js:285 msgid "Failed to delete one or more templates." msgstr "" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:163 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:162 msgid "Failed to delete one or more tokens." msgstr "" -#: screens/User/UserTokenList/UserTokenList.jsx:206 +#: screens/User/UserTokenList/UserTokenList.js:205 msgid "Failed to delete one or more user tokens." msgstr "" -#: screens/User/UserList/UserList.jsx:194 +#: screens/User/UserList/UserList.js:193 msgid "Failed to delete one or more users." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:258 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:257 msgid "Failed to delete one or more workflow approval." msgstr "" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:190 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:186 msgid "Failed to delete organization." msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:292 +#: screens/Project/ProjectDetail/ProjectDetail.js:288 msgid "Failed to delete project." msgstr "" -#: components/ResourceAccessList/ResourceAccessList.jsx:249 +#: components/ResourceAccessList/ResourceAccessList.js:249 msgid "Failed to delete role" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:262 -#: screens/User/UserRoles/UserRolesList.jsx:260 +#: screens/Team/TeamRoles/TeamRolesList.js:262 +#: screens/User/UserRoles/UserRolesList.js:260 msgid "Failed to delete role." msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:403 msgid "Failed to delete schedule." msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:173 msgid "Failed to delete smart inventory." msgstr "" -#: screens/Team/TeamDetail/TeamDetail.jsx:77 +#: screens/Team/TeamDetail/TeamDetail.js:77 msgid "Failed to delete team." msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:110 +#: screens/User/UserDetail/UserDetail.js:114 msgid "Failed to delete user." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:225 msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:263 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:259 msgid "Failed to delete workflow job template." msgstr "" -#: screens/Host/HostDetail/HostDetail.jsx:63 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.js:59 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:59 msgid "Failed to delete {name}." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:271 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:270 msgid "Failed to deny one or more workflow approval." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:247 msgid "Failed to deny workflow approval." msgstr "" -#: screens/Host/HostGroups/HostGroupsList.jsx:255 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:259 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 +#: screens/Host/HostGroups/HostGroupsList.js:254 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:258 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:255 msgid "Failed to disassociate one or more groups." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:289 msgid "Failed to disassociate one or more hosts." msgstr "" -#: screens/InstanceGroup/Instances/InstanceList.jsx:253 +#: screens/InstanceGroup/Instances/InstanceList.js:252 msgid "Failed to disassociate one or more instances." msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:271 +#: screens/User/UserTeams/UserTeamList.js:270 msgid "Failed to disassociate one or more teams." msgstr "" -#: screens/Login/Login.jsx:213 +#: screens/Login/Login.js:213 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "" -#: screens/Project/ProjectList/ProjectList.jsx:285 +#: screens/Project/ProjectList/ProjectList.js:293 msgid "Failed to fetch the updated project data." msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:113 -#: components/LaunchButton/LaunchButton.jsx:164 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.js:113 +#: components/LaunchButton/LaunchButton.js:164 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:126 msgid "Failed to launch job." msgstr "" -#: contexts/Config.jsx:94 +#: contexts/Config.js:94 msgid "Failed to retrieve configuration." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:329 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:332 msgid "Failed to retrieve full node resource object." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:340 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:343 msgid "Failed to retrieve node credentials." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:166 msgid "Failed to send test notification." msgstr "" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:54 +#: screens/Inventory/shared/InventorySourceSyncButton.js:54 msgid "Failed to sync inventory source." msgstr "" -#: screens/Project/shared/ProjectSyncButton.jsx:65 +#: screens/Project/shared/ProjectSyncButton.js:65 msgid "Failed to sync project." msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:248 +#: screens/Inventory/InventorySources/InventorySourceList.js:247 msgid "Failed to sync some or all inventory sources." msgstr "" -#: components/HostToggle/HostToggle.jsx:74 +#: components/HostToggle/HostToggle.js:74 msgid "Failed to toggle host." msgstr "" -#: components/InstanceToggle/InstanceToggle.jsx:65 +#: components/InstanceToggle/InstanceToggle.js:65 msgid "Failed to toggle instance." msgstr "" -#: components/NotificationList/NotificationList.jsx:250 +#: components/NotificationList/NotificationList.js:250 msgid "Failed to toggle notification." msgstr "" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:71 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:71 msgid "Failed to toggle schedule." msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:172 +#: screens/InstanceGroup/Instances/InstanceListItem.js:172 msgid "Failed to update capacity adjustment." msgstr "" -#: screens/Template/TemplateSurvey.jsx:133 +#: screens/Template/TemplateSurvey.js:133 msgid "Failed to update survey." msgstr "" -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.js:88 msgid "Failed to user token." msgstr "" -#: components/NotificationList/NotificationListItem.jsx:78 -#: components/NotificationList/NotificationListItem.jsx:79 +#: components/NotificationList/NotificationListItem.js:78 +#: components/NotificationList/NotificationListItem.js:79 msgid "Failure" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:158 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:187 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:217 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:262 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:316 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "False" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:113 +#: components/Schedule/shared/FrequencyDetailSubform.js:113 msgid "February" msgstr "" -#: components/Search/AdvancedSearch.jsx:207 +#: components/Search/AdvancedSearch.js:211 msgid "Field contains value." msgstr "" -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.js:235 msgid "Field ends with value." msgstr "" -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:80 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:80 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: components/Search/AdvancedSearch.jsx:243 +#: components/Search/AdvancedSearch.js:247 msgid "Field matches the given regular expression." msgstr "" -#: components/Search/AdvancedSearch.jsx:219 +#: components/Search/AdvancedSearch.js:223 msgid "Field starts with value." msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:397 +#: components/Schedule/shared/FrequencyDetailSubform.js:397 msgid "Fifth" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:745 +#: screens/Job/JobOutput/JobOutput.js:759 msgid "File Difference" msgstr "" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:72 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:72 msgid "File upload rejected. Please select a single .json file." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:97 msgid "File, directory or script" msgstr "" -#: components/JobList/JobList.jsx:220 -#: components/JobList/JobListItem.jsx:85 +#: components/JobList/JobList.js:225 +#: components/JobList/JobListItem.js:92 msgid "Finish Time" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:123 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.js:140 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:167 msgid "Finished" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:385 +#: components/Schedule/shared/FrequencyDetailSubform.js:385 msgid "First" msgstr "" -#: components/AddRole/AddResourceRole.jsx:27 -#: components/AddRole/AddResourceRole.jsx:41 -#: components/ResourceAccessList/ResourceAccessList.jsx:135 -#: screens/User/UserDetail/UserDetail.jsx:65 -#: screens/User/UserList/UserList.jsx:125 -#: screens/User/UserList/UserList.jsx:163 -#: screens/User/UserList/UserListItem.jsx:53 -#: screens/User/UserList/UserListItem.jsx:56 -#: screens/User/shared/UserForm.jsx:101 +#: components/AddRole/AddResourceRole.js:27 +#: components/AddRole/AddResourceRole.js:41 +#: components/ResourceAccessList/ResourceAccessList.js:135 +#: screens/User/UserDetail/UserDetail.js:60 +#: screens/User/UserList/UserList.js:125 +#: screens/User/UserList/UserList.js:162 +#: screens/User/UserList/UserListItem.js:53 +#: screens/User/shared/UserForm.js:64 msgid "First Name" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:253 msgid "First Run" msgstr "" -#: components/ResourceAccessList/ResourceAccessList.jsx:184 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:66 +#: components/ResourceAccessList/ResourceAccessList.js:184 +#: components/ResourceAccessList/ResourceAccessListItem.js:66 msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:337 +#: components/Search/AdvancedSearch.js:341 msgid "First, select a key" msgstr "" -#: components/Workflow/WorkflowTools.jsx:88 +#: components/Workflow/WorkflowTools.js:88 msgid "Fit the graph to the available screen size" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:95 +#: screens/Template/Survey/SurveyQuestionForm.js:95 msgid "Float" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:829 +#: screens/Job/JobOutput/JobOutput.js:843 msgid "Follow" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:257 +#: screens/Template/shared/JobTemplateForm.js:257 msgid "" "For job templates, select run to execute\n" "the playbook. Select check to only check playbook syntax,\n" @@ -3575,463 +3430,443 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" "and report problems without executing the playbook." msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:78 msgid "For more information, refer to the" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:179 -#: components/AdHocCommands/AdHocDetailsStep.jsx:180 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:154 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 -#: screens/Template/shared/JobTemplateForm.jsx:428 +#: components/AdHocCommands/AdHocDetailsStep.js:179 +#: components/AdHocCommands/AdHocDetailsStep.js:180 +#: components/PromptDetail/PromptJobTemplateDetail.js:154 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:230 +#: screens/Template/shared/JobTemplateForm.js:428 msgid "Forks" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.js:395 msgid "Fourth" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.js:166 msgid "Frequency Details" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.js:196 #: components/Schedule/shared/buildRuleObj.js:73 msgid "Frequency did not match an expected value" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:293 +#: components/Schedule/shared/FrequencyDetailSubform.js:293 msgid "Fri" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:298 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:434 +#: components/Schedule/shared/FrequencyDetailSubform.js:298 +#: components/Schedule/shared/FrequencyDetailSubform.js:434 msgid "Friday" msgstr "" -#: components/Search/AdvancedSearch.jsx:168 +#: components/Search/AdvancedSearch.js:172 msgid "Fuzzy search on id, name or description fields." msgstr "" -#: components/Search/AdvancedSearch.jsx:155 +#: components/Search/AdvancedSearch.js:159 msgid "Fuzzy search on name field." msgstr "" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:140 -#: screens/Organization/shared/OrganizationForm.jsx:102 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:136 +#: screens/Organization/shared/OrganizationForm.js:101 msgid "Galaxy Credentials" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:189 +#: screens/Credential/shared/CredentialForm.js:186 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:753 +#: screens/Job/JobOutput/JobOutput.js:767 msgid "Gathering Facts" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:225 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:225 msgid "Get subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:219 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:219 msgid "Get subscriptions" msgstr "" -#: components/Lookup/ProjectLookup.jsx:136 +#: components/Lookup/ProjectLookup.js:136 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: screens/Project/ProjectList/ProjectList.jsx:182 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 +#: screens/Project/ProjectList/ProjectList.js:187 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:98 msgid "Git" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:248 -#: screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:108 msgid "GitHub" msgstr "" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: screens/Setting/Settings.jsx:50 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:80 +#: screens/Setting/Settings.js:50 msgid "GitHub Default" msgstr "" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: screens/Setting/Settings.jsx:59 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:95 +#: screens/Setting/Settings.js:59 msgid "GitHub Enterprise" msgstr "" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: screens/Setting/Settings.jsx:62 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:100 +#: screens/Setting/Settings.js:62 msgid "GitHub Enterprise Organization" msgstr "" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: screens/Setting/Settings.jsx:65 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:105 +#: screens/Setting/Settings.js:65 msgid "GitHub Enterprise Team" msgstr "" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: screens/Setting/Settings.jsx:53 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:85 +#: screens/Setting/Settings.js:53 msgid "GitHub Organization" msgstr "" -#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: screens/Setting/Settings.jsx:56 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.js:90 +#: screens/Setting/Settings.js:56 msgid "GitHub Team" msgstr "" -#: screens/Setting/SettingList.jsx:59 +#: screens/Setting/SettingList.js:60 msgid "GitHub settings" msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:248 -#: screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:248 +#: screens/Template/shared/WebhookSubForm.js:114 msgid "GitLab" msgstr "" -#: components/Lookup/ExecutionEnvironmentLookup.jsx:206 +#: components/Lookup/ExecutionEnvironmentLookup.js:206 msgid "Global Default Execution Environment" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:71 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:77 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:71 msgid "Globally Available" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:154 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:154 msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.js:29 msgid "Go to first page" msgstr "" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.js:31 msgid "Go to last page" msgstr "" -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.js:32 msgid "Go to next page" msgstr "" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.js:30 msgid "Go to previous page" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:100 msgid "Google Compute Engine" msgstr "" -#: screens/Setting/SettingList.jsx:63 +#: screens/Setting/SettingList.js:64 msgid "Google OAuth 2 settings" msgstr "" -#: screens/Setting/Settings.jsx:68 +#: screens/Setting/Settings.js:68 msgid "Google OAuth2" msgstr "" -#: components/NotificationList/NotificationList.jsx:194 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +#: components/NotificationList/NotificationList.js:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:154 msgid "Grafana" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:157 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:157 msgid "Grafana API key" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:137 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:137 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:146 msgid "Grafana URL" msgstr "" -#: components/Search/AdvancedSearch.jsx:255 +#: components/Search/AdvancedSearch.js:259 msgid "Greater than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:261 +#: components/Search/AdvancedSearch.js:265 msgid "Greater than or equal to comparison." msgstr "" -#: components/Lookup/HostFilterLookup.jsx:88 +#: components/Lookup/HostFilterLookup.js:88 msgid "Group" msgstr "" -#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventories.js:76 msgid "Group details" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:124 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:124 msgid "Group type" msgstr "" -#: screens/Host/Host.jsx:62 -#: screens/Host/HostGroups/HostGroupsList.jsx:237 -#: screens/Host/Hosts.jsx:30 -#: screens/Inventory/Inventories.jsx:70 -#: screens/Inventory/Inventories.jsx:72 -#: screens/Inventory/Inventory.jsx:64 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:241 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 +#: screens/Host/Host.js:62 +#: screens/Host/HostGroups/HostGroupsList.js:236 +#: screens/Host/Hosts.js:30 +#: screens/Inventory/Inventories.js:70 +#: screens/Inventory/Inventories.js:72 +#: screens/Inventory/Inventory.js:64 +#: screens/Inventory/InventoryHost/InventoryHost.js:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:240 +#: screens/Inventory/InventoryList/InventoryListItem.js:104 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:237 #: util/getRelatedResourceDeleteDetails.js:118 msgid "Groups" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:326 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:463 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:463 msgid "HTTP Headers" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:321 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:477 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:321 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:477 msgid "HTTP Method" msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:117 +#: components/AppContainer/PageHeaderToolbar.js:117 msgid "Help" msgstr "" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Hide" msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Hide description" msgstr "" -#: components/NotificationList/NotificationList.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +#: components/NotificationList/NotificationList.js:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:155 msgid "Hipchat" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:105 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:75 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:105 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:75 msgid "Host" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:740 +#: screens/Job/JobOutput/JobOutput.js:754 msgid "Host Async Failure" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:739 +#: screens/Job/JobOutput/JobOutput.js:753 msgid "Host Async OK" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:161 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:238 -#: screens/Template/shared/JobTemplateForm.jsx:645 +#: components/PromptDetail/PromptJobTemplateDetail.js:161 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:238 +#: screens/Template/shared/JobTemplateForm.js:645 msgid "Host Config Key" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:97 +#: screens/Job/JobOutput/shared/OutputToolbar.js:94 msgid "Host Count" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.js:101 msgid "Host Details" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:731 +#: screens/Job/JobOutput/JobOutput.js:745 msgid "Host Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:734 +#: screens/Job/JobOutput/JobOutput.js:748 msgid "Host Failure" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:272 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:269 msgid "Host Filter" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.js:120 msgid "Host Name" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:733 +#: screens/Job/JobOutput/JobOutput.js:747 msgid "Host OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:738 +#: screens/Job/JobOutput/JobOutput.js:752 msgid "Host Polling" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:744 +#: screens/Job/JobOutput/JobOutput.js:758 msgid "Host Retry" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:735 +#: screens/Job/JobOutput/JobOutput.js:749 msgid "Host Skipped" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:732 +#: screens/Job/JobOutput/JobOutput.js:746 msgid "Host Started" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:736 +#: screens/Job/JobOutput/JobOutput.js:750 msgid "Host Unreachable" msgstr "" -#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.js:67 msgid "Host details" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.js:102 msgid "Host details modal" msgstr "" -#: screens/Host/Host.jsx:90 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.js:90 +#: screens/Inventory/InventoryHost/InventoryHost.js:100 msgid "Host not found." msgstr "" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:76 +#: screens/Job/JobOutput/shared/HostStatusBar.js:76 msgid "Host status information for this job is unavailable." msgstr "" -#: routeConfig.jsx:83 -#: screens/ActivityStream/ActivityStream.jsx:171 -#: screens/Dashboard/Dashboard.jsx:81 -#: screens/Host/HostList/HostList.jsx:140 -#: screens/Host/HostList/HostList.jsx:186 -#: screens/Host/Hosts.jsx:15 -#: screens/Host/Hosts.jsx:24 -#: screens/Inventory/Inventories.jsx:63 -#: screens/Inventory/Inventories.jsx:77 -#: screens/Inventory/Inventory.jsx:65 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:110 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:165 -#: screens/Inventory/SmartInventory.jsx:67 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:69 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:98 +#: routeConfig.js:83 +#: screens/ActivityStream/ActivityStream.js:167 +#: screens/Dashboard/Dashboard.js:81 +#: screens/Host/HostList/HostList.js:136 +#: screens/Host/HostList/HostList.js:181 +#: screens/Host/Hosts.js:15 +#: screens/Host/Hosts.js:24 +#: screens/Inventory/Inventories.js:63 +#: screens/Inventory/Inventories.js:77 +#: screens/Inventory/Inventory.js:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:67 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:262 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:110 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:164 +#: screens/Inventory/SmartInventory.js:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:69 +#: screens/Job/JobOutput/shared/OutputToolbar.js:95 #: util/getRelatedResourceDeleteDetails.js:122 msgid "Hosts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:139 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:135 msgid "Hosts automated" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:121 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:128 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:117 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:124 msgid "Hosts available" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:134 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:130 msgid "Hosts imported" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:150 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:146 msgid "Hosts remaining" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:130 -#~ msgid "Hosts used" -#~ msgstr "" - -#: components/Schedule/shared/ScheduleForm.jsx:144 +#: components/Schedule/shared/ScheduleForm.js:144 msgid "Hour" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:40 -#~ msgid "I agree to the End User License Agreement" -#~ msgstr "" - -#: components/JobList/JobList.jsx:172 -#: components/Lookup/HostFilterLookup.jsx:84 -#: screens/Team/TeamRoles/TeamRolesList.jsx:156 +#: components/JobList/JobList.js:177 +#: components/Lookup/HostFilterLookup.js:84 +#: screens/Team/TeamRoles/TeamRolesList.js:156 msgid "ID" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:142 msgid "ID of the Dashboard" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:147 msgid "ID of the Panel" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:164 msgid "ID of the dashboard (optional)" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:170 msgid "ID of the panel (optional)" msgstr "" -#: components/NotificationList/NotificationList.jsx:196 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +#: components/NotificationList/NotificationList.js:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:156 msgid "IRC" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:176 msgid "IRC Nick" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:171 msgid "IRC Server Address" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:166 msgid "IRC Server Port" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:218 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:218 msgid "IRC nick" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:210 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:210 msgid "IRC server address" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:196 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:196 msgid "IRC server password" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:201 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:201 msgid "IRC server port" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:210 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:269 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:340 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:210 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:255 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:269 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:340 msgid "Icon URL" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:152 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:149 msgid "" "If checked, all variables for child groups\n" "and hosts will be removed and replaced by those found\n" "on the external source." msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 -#~ msgid "" -#~ "If checked, any hosts and groups that were\n" -#~ "previously present on the external source but are now removed\n" -#~ "will be removed from the Tower inventory. Hosts and groups\n" -#~ "that were not managed by the inventory source will be promoted\n" -#~ "to the next manually created group or if there is no manually\n" -#~ "created group to promote them into, they will be left in the \"all\"\n" -#~ "default group for the inventory." -#~ msgstr "" - -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:128 msgid "" "If checked, any hosts and groups that were\n" "previously present on the external source but are now removed\n" @@ -4042,470 +3877,459 @@ msgid "" "default group for the inventory." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:562 +#: screens/Template/shared/JobTemplateForm.js:562 msgid "" "If enabled, run this playbook as an\n" "administrator." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" "--diff mode." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:502 +#: screens/Template/shared/JobTemplateForm.js:502 msgid "" "If enabled, show the changes made by\n" "Ansible tasks, where supported. This is equivalent\n" "to Ansible's --diff mode." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:200 +#: components/AdHocCommands/AdHocDetailsStep.js:200 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:606 +#: screens/Template/shared/JobTemplateForm.js:606 msgid "" "If enabled, simultaneous runs of this job\n" "template will be allowed." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.js:244 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:613 +#: screens/Template/shared/JobTemplateForm.js:613 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:155 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:151 msgid "If you are ready to upgrade or renew, please <0>contact us." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:64 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:64 msgid "" "If you do not have a subscription, you can visit\n" "Red Hat to obtain a trial subscription." msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:47 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:178 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:207 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:175 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:204 msgid "" "If you want the Inventory Source to update on\n" "launch and on project update, click on Update on launch, and also go to" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:134 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:140 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:103 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:91 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:110 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:53 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:140 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:62 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:103 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:110 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:16 msgid "Image" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:98 -#~ msgid "Image name" -#~ msgstr "" - -#: screens/Job/JobOutput/JobOutput.jsx:748 +#: screens/Job/JobOutput/JobOutput.js:762 msgid "Including File" msgstr "" -#: components/HostToggle/HostToggle.jsx:16 +#: components/HostToggle/HostToggle.js:16 msgid "" "Indicates if a host is available and should be included in running\n" "jobs. For hosts that are part of an external inventory, this may be\n" "reset by the inventory sync process." msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:107 +#: components/AppContainer/PageHeaderToolbar.js:107 msgid "Info" msgstr "" -#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.js:45 msgid "Initiated By" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:244 -#: screens/ActivityStream/ActivityStream.jsx:254 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +#: screens/ActivityStream/ActivityStream.js:240 +#: screens/ActivityStream/ActivityStream.js:250 +#: screens/ActivityStream/ActivityStreamDetailButton.js:44 msgid "Initiated by" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:234 +#: screens/ActivityStream/ActivityStream.js:230 msgid "Initiated by (username)" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:82 +#: screens/CredentialType/shared/CredentialTypeForm.js:46 msgid "Injector configuration" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:41 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:76 +#: screens/CredentialType/shared/CredentialTypeForm.js:38 msgid "Input configuration" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -#~ msgid "Insights Analytics" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -#~ msgid "Insights Analytics dashboard" -#~ msgstr "" - -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:31 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:31 msgid "Insights Credential" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#~ msgid "Insights analytics" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -#~ msgid "Insights for Ansible" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:74 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:71 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:72 msgid "Insights for Ansible Automation Platform" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:114 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:111 msgid "Insights for Ansible Automation Platform dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -#~ msgid "Insights for Ansible dashboard" -#~ msgstr "" - -#: components/Lookup/HostFilterLookup.jsx:109 +#: components/Lookup/HostFilterLookup.js:109 msgid "Insights system ID" msgstr "" -#: screens/Metrics/Metrics.jsx:178 +#: screens/Metrics/Metrics.js:178 msgid "Instance" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:153 +#: components/PromptDetail/PromptInventorySourceDetail.js:153 msgid "Instance Filters" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:232 +#: screens/Job/JobDetail/JobDetail.js:241 msgid "Instance Group" msgstr "" -#: components/Lookup/InstanceGroupsLookup.jsx:70 -#: components/Lookup/InstanceGroupsLookup.jsx:76 -#: components/Lookup/InstanceGroupsLookup.jsx:110 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: routeConfig.jsx:130 -#: screens/ActivityStream/ActivityStream.jsx:196 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:170 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:253 -#: screens/InstanceGroup/InstanceGroups.jsx:16 -#: screens/InstanceGroup/InstanceGroups.jsx:26 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:123 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:322 +#: components/Lookup/InstanceGroupsLookup.js:70 +#: components/Lookup/InstanceGroupsLookup.js:76 +#: components/Lookup/InstanceGroupsLookup.js:122 +#: components/PromptDetail/PromptJobTemplateDetail.js:227 +#: routeConfig.js:130 +#: screens/ActivityStream/ActivityStream.js:192 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:175 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:271 +#: screens/InstanceGroup/InstanceGroups.js:36 +#: screens/InstanceGroup/InstanceGroups.js:46 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:87 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:119 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:322 msgid "Instance Groups" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:101 +#: components/Lookup/HostFilterLookup.js:101 msgid "Instance ID" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:59 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:60 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:71 msgid "Instance group" msgstr "" -#: screens/InstanceGroup/InstanceGroup.jsx:99 +#: screens/InstanceGroup/InstanceGroup.js:99 msgid "Instance group not found." msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:147 +#: screens/InstanceGroup/Instances/InstanceListItem.js:147 msgid "Instance group used capacity" msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:122 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:118 msgid "Instance groups" msgstr "" -#: screens/InstanceGroup/InstanceGroup.jsx:81 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:273 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:75 -#: screens/InstanceGroup/InstanceGroups.jsx:31 -#: screens/InstanceGroup/Instances/InstanceList.jsx:156 -#: screens/InstanceGroup/Instances/InstanceList.jsx:234 +#: screens/InstanceGroup/InstanceGroup.js:81 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:291 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:75 +#: screens/InstanceGroup/InstanceGroups.js:51 +#: screens/InstanceGroup/Instances/InstanceList.js:156 +#: screens/InstanceGroup/Instances/InstanceList.js:233 msgid "Instances" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:94 +#: screens/Template/Survey/SurveyQuestionForm.js:94 msgid "Integer" msgstr "" -#: util/validators.jsx:87 +#: util/validators.js:88 msgid "Invalid email address" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:117 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:117 msgid "Invalid file format. Please upload a valid Red Hat Subscription Manifest." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:149 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:152 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "" -#: util/validators.jsx:32 +#: util/validators.js:33 msgid "Invalid time format" msgstr "" -#: screens/Login/Login.jsx:135 +#: screens/Login/Login.js:135 msgid "Invalid username or password. Please try again." msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: routeConfig.jsx:78 -#: screens/ActivityStream/ActivityStream.jsx:168 -#: screens/Dashboard/Dashboard.jsx:92 -#: screens/Inventory/Inventories.jsx:16 -#: screens/Inventory/InventoryList/InventoryList.jsx:163 -#: screens/Inventory/InventoryList/InventoryList.jsx:215 +#: routeConfig.js:78 +#: screens/ActivityStream/ActivityStream.js:164 +#: screens/Dashboard/Dashboard.js:92 +#: screens/Inventory/Inventories.js:16 +#: screens/Inventory/InventoryList/InventoryList.js:163 +#: screens/Inventory/InventoryList/InventoryList.js:226 #: util/getRelatedResourceDeleteDetails.js:201 #: util/getRelatedResourceDeleteDetails.js:269 msgid "Inventories" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:130 +#: screens/Inventory/InventoryList/InventoryListItem.js:130 msgid "Inventories with sources cannot be copied" msgstr "" -#: components/HostForm/HostForm.jsx:47 -#: components/JobList/JobListItem.jsx:181 -#: components/LaunchPrompt/steps/InventoryStep.jsx:105 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 -#: components/Lookup/HostFilterLookup.jsx:365 -#: components/Lookup/HostListItem.jsx:9 -#: components/Lookup/InventoryLookup.jsx:106 -#: components/Lookup/InventoryLookup.jsx:115 -#: components/Lookup/InventoryLookup.jsx:155 -#: components/Lookup/InventoryLookup.jsx:171 -#: components/Lookup/InventoryLookup.jsx:211 -#: components/PromptDetail/PromptDetail.jsx:177 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:94 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:124 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:287 -#: components/TemplateList/TemplateListItem.jsx:276 -#: components/TemplateList/TemplateListItem.jsx:286 -#: screens/Host/HostDetail/HostDetail.jsx:83 -#: screens/Host/HostList/HostList.jsx:167 -#: screens/Host/HostList/HostListItem.jsx:33 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:111 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:160 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: components/HostForm/HostForm.js:48 +#: components/JobList/JobListItem.js:188 +#: components/LaunchPrompt/steps/InventoryStep.js:105 +#: components/LaunchPrompt/steps/useInventoryStep.js:48 +#: components/Lookup/HostFilterLookup.js:372 +#: components/Lookup/HostListItem.js:9 +#: components/Lookup/InventoryLookup.js:119 +#: components/Lookup/InventoryLookup.js:128 +#: components/Lookup/InventoryLookup.js:168 +#: components/Lookup/InventoryLookup.js:184 +#: components/Lookup/InventoryLookup.js:224 +#: components/PromptDetail/PromptDetail.js:177 +#: components/PromptDetail/PromptInventorySourceDetail.js:94 +#: components/PromptDetail/PromptJobTemplateDetail.js:124 +#: components/PromptDetail/PromptJobTemplateDetail.js:134 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:77 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:283 +#: components/TemplateList/TemplateListItem.js:277 +#: components/TemplateList/TemplateListItem.js:287 +#: screens/Host/HostDetail/HostDetail.js:75 +#: screens/Host/HostList/HostList.js:163 +#: screens/Host/HostList/HostListItem.js:48 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:175 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:36 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:110 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:177 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:200 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:207 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:141 msgid "Inventory" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:105 msgid "Inventory (Name)" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:117 +#: components/PromptDetail/PromptInventorySourceDetail.js:117 msgid "Inventory File" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:92 +#: components/Lookup/HostFilterLookup.js:92 msgid "Inventory ID" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:176 +#: screens/Job/JobDetail/JobDetail.js:193 msgid "Inventory Source" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:89 msgid "Inventory Source Sync" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:103 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:103 msgid "Inventory Source Sync Error" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:166 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:184 +#: screens/Inventory/InventorySources/InventorySourceList.js:166 +#: screens/Inventory/InventorySources/InventorySourceList.js:183 #: util/getRelatedResourceDeleteDetails.js:66 #: util/getRelatedResourceDeleteDetails.js:146 msgid "Inventory Sources" msgstr "" -#: components/JobList/JobList.jsx:184 -#: components/JobList/JobListItem.jsx:35 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:36 -#: components/Workflow/WorkflowLegend.jsx:100 -#: screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.js:189 +#: components/JobList/JobListItem.js:36 +#: components/Schedule/ScheduleList/ScheduleListItem.js:36 +#: components/Workflow/WorkflowLegend.js:100 +#: screens/Job/JobDetail/JobDetail.js:77 msgid "Inventory Sync" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:59 +#: screens/Inventory/InventoryList/InventoryList.js:172 +msgid "Inventory Type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.js:59 msgid "Inventory Update" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:183 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:179 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:105 msgid "Inventory file" msgstr "" -#: screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.js:91 msgid "Inventory not found." msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:137 +#: screens/Dashboard/DashboardGraph.js:137 msgid "Inventory sync" msgstr "" -#: screens/Dashboard/Dashboard.jsx:98 +#: screens/Dashboard/Dashboard.js:98 msgid "Inventory sync failures" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: screens/Job/JobDetail/JobDetail.jsx:120 -#~ msgid "Isolated" -#~ msgstr "" +#: components/DataListToolbar/DataListToolbar.js:99 +msgid "Is expanded" +msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:742 +#: components/DataListToolbar/DataListToolbar.js:101 +msgid "Is not expanded" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.js:756 msgid "Item Failed" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:741 +#: screens/Job/JobOutput/JobOutput.js:755 msgid "Item OK" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:743 +#: screens/Job/JobOutput/JobOutput.js:757 msgid "Item Skipped" msgstr "" -#: components/AssociateModal/AssociateModal.jsx:20 +#: components/AssociateModal/AssociateModal.js:20 +#: components/PaginatedTable/PaginatedTable.js:42 msgid "Items" msgstr "" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.js:27 msgid "Items per page" msgstr "" -#: components/Sparkline/Sparkline.jsx:28 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:36 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:118 -#: screens/Project/ProjectList/ProjectListItem.jsx:70 +#: components/Sparkline/Sparkline.js:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:36 +#: screens/Project/ProjectDetail/ProjectDetail.js:114 +#: screens/Project/ProjectList/ProjectListItem.js:67 msgid "JOB ID:" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:142 +#: screens/Job/JobOutput/HostEventModal.js:142 msgid "JSON" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:143 +#: screens/Job/JobOutput/HostEventModal.js:143 msgid "JSON tab" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:41 msgid "JSON:" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:108 +#: components/Schedule/shared/FrequencyDetailSubform.js:108 msgid "January" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:66 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:229 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:66 msgid "Job" msgstr "" -#: components/JobList/JobListItem.jsx:97 -#: screens/Job/JobDetail/JobDetail.jsx:390 -#: screens/Job/JobOutput/JobOutput.jsx:930 -#: screens/Job/JobOutput/JobOutput.jsx:931 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:137 +#: components/JobList/JobListItem.js:104 +#: screens/Job/JobDetail/JobDetail.js:403 +#: screens/Job/JobOutput/JobOutput.js:944 +#: screens/Job/JobOutput/JobOutput.js:945 +#: screens/Job/JobOutput/shared/OutputToolbar.js:134 msgid "Job Cancel Error" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:412 -#: screens/Job/JobOutput/JobOutput.jsx:919 -#: screens/Job/JobOutput/JobOutput.jsx:920 +#: screens/Job/JobDetail/JobDetail.js:425 +#: screens/Job/JobOutput/JobOutput.js:933 +#: screens/Job/JobOutput/JobOutput.js:934 msgid "Job Delete Error" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:245 +#: components/JobList/JobListItem.js:257 +#: screens/Job/JobDetail/JobDetail.js:254 msgid "Job Slice" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 -#: screens/Template/shared/JobTemplateForm.jsx:482 +#: components/JobList/JobListItem.js:262 +#: screens/Job/JobDetail/JobDetail.js:259 +msgid "Job Slice Parent" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.js:160 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:235 +#: screens/Template/shared/JobTemplateForm.js:482 msgid "Job Slicing" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.js:140 msgid "Job Status" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:56 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:57 -#: components/PromptDetail/PromptDetail.jsx:198 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:334 -#: screens/Job/JobDetail/JobDetail.jsx:294 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:337 -#: screens/Template/shared/JobTemplateForm.jsx:523 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:56 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:57 +#: components/PromptDetail/PromptDetail.js:198 +#: components/PromptDetail/PromptJobTemplateDetail.js:242 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:330 +#: screens/Job/JobDetail/JobDetail.js:307 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:337 +#: screens/Template/shared/JobTemplateForm.js:523 msgid "Job Tags" msgstr "" -#: components/JobList/JobListItem.jsx:149 -#: components/TemplateList/TemplateList.jsx:202 -#: components/Workflow/WorkflowLegend.jsx:92 -#: components/Workflow/WorkflowNodeHelp.jsx:47 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:99 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:14 -#: screens/Job/JobDetail/JobDetail.jsx:126 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:98 +#: components/JobList/JobListItem.js:156 +#: components/TemplateList/TemplateList.js:207 +#: components/Workflow/WorkflowLegend.js:92 +#: components/Workflow/WorkflowNodeHelp.js:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:99 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:14 +#: screens/Job/JobDetail/JobDetail.js:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:95 msgid "Job Template" msgstr "" -#: components/LaunchPrompt/steps/credentialsValidator.jsx:39 +#: components/LaunchPrompt/steps/credentialsValidator.js:39 msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" msgstr "" -#: screens/Project/Project.jsx:117 -#: screens/Project/Projects.jsx:31 +#: screens/Project/Project.js:117 +#: screens/Project/Projects.js:31 #: util/getRelatedResourceDeleteDetails.js:55 #: util/getRelatedResourceDeleteDetails.js:100 #: util/getRelatedResourceDeleteDetails.js:132 msgid "Job Templates" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:23 msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." msgstr "" @@ -4513,721 +4337,694 @@ msgstr "" msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" msgstr "" -#: components/JobList/JobList.jsx:180 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 -#: components/PromptDetail/PromptDetail.jsx:151 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 -#: screens/Job/JobDetail/JobDetail.jsx:156 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:183 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:142 -#: screens/Template/shared/JobTemplateForm.jsx:254 +#: components/JobList/JobList.js:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:110 +#: components/PromptDetail/PromptDetail.js:151 +#: components/PromptDetail/PromptJobTemplateDetail.js:107 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:279 +#: screens/Job/JobDetail/JobDetail.js:173 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:183 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:138 +#: screens/Template/shared/JobTemplateForm.js:254 msgid "Job Type" msgstr "" -#: screens/Dashboard/Dashboard.jsx:124 +#: screens/Dashboard/Dashboard.js:124 msgid "Job status" msgstr "" -#: screens/Dashboard/Dashboard.jsx:122 +#: screens/Dashboard/Dashboard.js:122 msgid "Job status graph tab" msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:121 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:154 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:121 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:153 msgid "Job templates" msgstr "" -#: components/JobList/JobList.jsx:163 -#: components/JobList/JobList.jsx:242 -#: routeConfig.jsx:37 -#: screens/ActivityStream/ActivityStream.jsx:145 -#: screens/Dashboard/shared/LineChart.jsx:69 -#: screens/Host/Host.jsx:67 -#: screens/Host/Hosts.jsx:31 -#: screens/InstanceGroup/ContainerGroup.jsx:80 -#: screens/InstanceGroup/InstanceGroup.jsx:86 -#: screens/InstanceGroup/InstanceGroups.jsx:32 -#: screens/InstanceGroup/InstanceGroups.jsx:37 -#: screens/Inventory/Inventories.jsx:59 -#: screens/Inventory/Inventories.jsx:68 -#: screens/Inventory/Inventory.jsx:68 -#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 -#: screens/Inventory/SmartInventory.jsx:69 -#: screens/Job/Jobs.jsx:15 -#: screens/Job/Jobs.jsx:25 -#: screens/Setting/SettingList.jsx:85 -#: screens/Setting/Settings.jsx:71 -#: screens/Template/Template.jsx:155 -#: screens/Template/Templates.jsx:46 -#: screens/Template/WorkflowJobTemplate.jsx:145 +#: components/JobList/JobList.js:168 +#: components/JobList/JobList.js:248 +#: routeConfig.js:37 +#: screens/ActivityStream/ActivityStream.js:141 +#: screens/Dashboard/shared/LineChart.js:69 +#: screens/Host/Host.js:67 +#: screens/Host/Hosts.js:31 +#: screens/InstanceGroup/ContainerGroup.js:80 +#: screens/InstanceGroup/InstanceGroup.js:86 +#: screens/InstanceGroup/InstanceGroups.js:52 +#: screens/InstanceGroup/InstanceGroups.js:57 +#: screens/Inventory/Inventories.js:59 +#: screens/Inventory/Inventories.js:68 +#: screens/Inventory/Inventory.js:68 +#: screens/Inventory/InventoryHost/InventoryHost.js:88 +#: screens/Inventory/SmartInventory.js:69 +#: screens/Job/Jobs.js:15 +#: screens/Job/Jobs.js:25 +#: screens/Setting/SettingList.js:86 +#: screens/Setting/Settings.js:71 +#: screens/Template/Template.js:155 +#: screens/Template/Templates.js:46 +#: screens/Template/WorkflowJobTemplate.js:145 msgid "Jobs" msgstr "" -#: screens/Setting/SettingList.jsx:90 +#: screens/Setting/SettingList.js:91 msgid "Jobs settings" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:138 +#: components/Schedule/shared/FrequencyDetailSubform.js:138 msgid "July" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:133 +#: components/Schedule/shared/FrequencyDetailSubform.js:133 msgid "June" msgstr "" -#: components/Search/AdvancedSearch.jsx:312 +#: components/Search/AdvancedSearch.js:316 msgid "Key" msgstr "" -#: components/Search/AdvancedSearch.jsx:303 +#: components/Search/AdvancedSearch.js:307 msgid "Key select" msgstr "" -#: components/Search/AdvancedSearch.jsx:306 +#: components/Search/AdvancedSearch.js:310 msgid "Key typeahead" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:229 +#: screens/ActivityStream/ActivityStream.js:225 msgid "Keyword" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:51 -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserDetail/UserDetail.js:52 +#: screens/User/UserList/UserListItem.js:44 msgid "LDAP" msgstr "" -#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.js:76 msgid "LDAP 1" msgstr "" -#: screens/Setting/Settings.jsx:77 +#: screens/Setting/Settings.js:77 msgid "LDAP 2" msgstr "" -#: screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.js:78 msgid "LDAP 3" msgstr "" -#: screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.js:79 msgid "LDAP 4" msgstr "" -#: screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.js:80 msgid "LDAP 5" msgstr "" -#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.js:75 msgid "LDAP Default" msgstr "" -#: screens/Setting/SettingList.jsx:67 +#: screens/Setting/SettingList.js:68 msgid "LDAP settings" msgstr "" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:102 msgid "LDAP1" msgstr "" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:107 msgid "LDAP2" msgstr "" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:112 msgid "LDAP3" msgstr "" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:117 msgid "LDAP4" msgstr "" -#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.js:122 msgid "LDAP5" msgstr "" -#: components/JobList/JobList.jsx:176 +#: components/JobList/JobList.js:181 msgid "Label Name" msgstr "" -#: components/JobList/JobListItem.jsx:228 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:209 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:114 -#: components/TemplateList/TemplateListItem.jsx:331 -#: screens/Job/JobDetail/JobDetail.jsx:279 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:304 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 -#: screens/Template/shared/JobTemplateForm.jsx:395 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:195 +#: components/JobList/JobListItem.js:235 +#: components/PromptDetail/PromptJobTemplateDetail.js:209 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:114 +#: components/TemplateList/TemplateListItem.js:332 +#: screens/Job/JobDetail/JobDetail.js:292 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:304 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:189 +#: screens/Template/shared/JobTemplateForm.js:395 +#: screens/Template/shared/WorkflowJobTemplateForm.js:195 msgid "Labels" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:398 +#: components/Schedule/shared/FrequencyDetailSubform.js:398 msgid "Last" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:144 +#: screens/Project/ProjectDetail/ProjectDetail.js:140 msgid "Last Job Status" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:75 +#: screens/User/UserDetail/UserDetail.js:76 msgid "Last Login" msgstr "" -#: components/PromptDetail/PromptDetail.jsx:137 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:272 -#: components/TemplateList/TemplateListItem.jsx:307 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:43 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:255 -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:97 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 -#: screens/Host/HostDetail/HostDetail.jsx:99 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:95 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:115 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:48 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:86 -#: screens/Job/JobDetail/JobDetail.jsx:332 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:340 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:116 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:238 -#: screens/Team/TeamDetail/TeamDetail.jsx:44 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.js:137 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:268 +#: components/TemplateList/TemplateListItem.js:308 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:101 +#: screens/Application/ApplicationsList/ApplicationListItem.js:43 +#: screens/Application/ApplicationsList/ApplicationsList.js:164 +#: screens/Credential/CredentialDetail/CredentialDetail.js:251 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:93 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:106 +#: screens/Host/HostDetail/HostDetail.js:91 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:72 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:111 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:44 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:82 +#: screens/Job/JobDetail/JobDetail.js:345 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:340 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:112 +#: screens/Project/ProjectDetail/ProjectDetail.js:234 +#: screens/Team/TeamDetail/TeamDetail.js:44 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:276 +#: screens/User/UserDetail/UserDetail.js:80 +#: screens/User/UserTokenDetail/UserTokenDetail.js:65 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:162 msgid "Last Modified" msgstr "" -#: components/AddRole/AddResourceRole.jsx:31 -#: components/AddRole/AddResourceRole.jsx:45 -#: components/ResourceAccessList/ResourceAccessList.jsx:139 -#: screens/User/UserDetail/UserDetail.jsx:66 -#: screens/User/UserList/UserList.jsx:129 -#: screens/User/UserList/UserList.jsx:164 -#: screens/User/UserList/UserListItem.jsx:61 -#: screens/User/UserList/UserListItem.jsx:64 -#: screens/User/shared/UserForm.jsx:107 +#: components/AddRole/AddResourceRole.js:31 +#: components/AddRole/AddResourceRole.js:45 +#: components/ResourceAccessList/ResourceAccessList.js:139 +#: screens/User/UserDetail/UserDetail.js:61 +#: screens/User/UserList/UserList.js:129 +#: screens/User/UserList/UserList.js:163 +#: screens/User/UserList/UserListItem.js:56 +#: screens/User/shared/UserForm.js:70 msgid "Last Name" msgstr "" -#: components/TemplateList/TemplateList.jsx:225 -#: components/TemplateList/TemplateListItem.jsx:176 +#: components/TemplateList/TemplateList.js:230 +#: components/TemplateList/TemplateListItem.js:177 msgid "Last Ran" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:259 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:255 msgid "Last Run" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:105 +#: components/Lookup/HostFilterLookup.js:105 msgid "Last job" msgstr "" -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 -#~ msgid "Last job run" -#~ msgstr "" - -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:218 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:142 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:51 -#: screens/Project/ProjectList/ProjectListItem.jsx:300 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:214 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:138 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:47 +#: screens/Project/ProjectList/ProjectListItem.js:297 msgid "Last modified" msgstr "" -#: components/ResourceAccessList/ResourceAccessList.jsx:185 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:67 +#: components/ResourceAccessList/ResourceAccessList.js:185 +#: components/ResourceAccessList/ResourceAccessListItem.js:67 msgid "Last name" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:305 +#: screens/Project/ProjectList/ProjectListItem.js:302 msgid "Last used" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:130 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:54 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:394 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:228 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 +#: components/AdHocCommands/AdHocCommandsWizard.js:106 +#: components/LaunchPrompt/steps/usePreviewStep.js:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:54 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:57 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:385 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:394 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:224 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:233 msgid "Launch" msgstr "" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:74 msgid "Launch Management Job" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:196 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:82 +#: components/TemplateList/TemplateListItem.js:197 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:82 msgid "Launch Template" msgstr "" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:32 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:34 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:46 -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:89 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:92 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:32 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:34 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:46 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:47 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:89 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:92 msgid "Launch management job" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:204 +#: components/TemplateList/TemplateListItem.js:205 msgid "Launch template" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:120 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:120 msgid "Launch workflow" msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:100 +#: components/LaunchPrompt/LaunchPrompt.js:100 msgid "Launch | {0}" msgstr "" -#: components/DetailList/LaunchedByDetail.jsx:82 +#: components/DetailList/LaunchedByDetail.js:82 msgid "Launched By" msgstr "" -#: components/JobList/JobList.jsx:192 +#: components/JobList/JobList.js:197 msgid "Launched By (Username)" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -#~ msgid "Learn more about Insights Analytics" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -#~ msgid "Learn more about Insights for Ansible" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:123 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:120 msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:73 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:73 msgid "Leave this field blank to make the execution environment globally available." msgstr "" -#: components/Workflow/WorkflowLegend.jsx:86 +#: components/Workflow/WorkflowLegend.js:86 msgid "Legend" msgstr "" -#: components/Search/AdvancedSearch.jsx:267 +#: components/Search/AdvancedSearch.js:271 msgid "Less than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:273 +#: components/Search/AdvancedSearch.js:277 msgid "Less than or equal to comparison." msgstr "" -#: screens/Setting/SettingList.jsx:137 -#: screens/Setting/Settings.jsx:96 -#~ msgid "License" -#~ msgstr "" - -#: screens/Setting/License/License.jsx:15 -#: screens/Setting/SettingList.jsx:142 -#~ msgid "License settings" -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:159 -#: components/AdHocCommands/AdHocDetailsStep.jsx:160 -#: components/JobList/JobList.jsx:210 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: components/PromptDetail/PromptDetail.jsx:186 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:155 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:88 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 -#: screens/Job/JobDetail/JobDetail.jsx:221 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:231 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 -#: screens/Template/shared/JobTemplateForm.jsx:444 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:156 +#: components/AdHocCommands/AdHocDetailsStep.js:159 +#: components/AdHocCommands/AdHocDetailsStep.js:160 +#: components/JobList/JobList.js:215 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:35 +#: components/PromptDetail/PromptDetail.js:186 +#: components/PromptDetail/PromptJobTemplateDetail.js:155 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:88 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:307 +#: screens/Job/JobDetail/JobDetail.js:230 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:231 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:148 +#: screens/Template/shared/JobTemplateForm.js:444 +#: screens/Template/shared/WorkflowJobTemplateForm.js:156 msgid "Limit" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:215 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:218 msgid "Link to an available node" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:321 msgid "Loading" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:260 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:49 +msgid "Local" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:256 msgid "Local Time Zone" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:121 +#: components/Schedule/shared/ScheduleForm.js:121 msgid "Local time zone" msgstr "" -#: screens/Login/Login.jsx:187 +#: screens/Login/Login.js:187 msgid "Log In" msgstr "" -#: screens/Setting/shared/LoggingTestAlert.jsx:14 -#~ msgid "Log aggregator test sent successfully." -#~ msgstr "" - -#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.js:93 msgid "Logging" msgstr "" -#: screens/Setting/SettingList.jsx:109 +#: screens/Setting/SettingList.js:110 msgid "Logging settings" msgstr "" -#: components/AppContainer/AppContainer.jsx:81 -#: components/AppContainer/AppContainer.jsx:146 -#: components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/AppContainer.js:81 +#: components/AppContainer/AppContainer.js:146 +#: components/AppContainer/PageHeaderToolbar.js:163 msgid "Logout" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:329 -#: components/Lookup/Lookup.jsx:166 +#: components/Lookup/HostFilterLookup.js:336 +#: components/Lookup/Lookup.js:168 msgid "Lookup modal" msgstr "" -#: components/Search/AdvancedSearch.jsx:177 +#: components/Search/AdvancedSearch.js:181 msgid "Lookup select" msgstr "" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.js:190 msgid "Lookup type" msgstr "" -#: components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.js:184 msgid "Lookup typeahead" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:34 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:116 -#: screens/Project/ProjectList/ProjectListItem.jsx:68 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:34 +#: screens/Project/ProjectDetail/ProjectDetail.js:112 +#: screens/Project/ProjectList/ProjectListItem.js:65 msgid "MOST RECENT SYNC" msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: components/AdHocCommands/AdHocCredentialStep.jsx:84 -#: screens/Job/JobDetail/JobDetail.jsx:251 +#: components/AdHocCommands/AdHocCredentialStep.js:89 +#: components/AdHocCommands/AdHocCredentialStep.js:90 +#: components/AdHocCommands/AdHocCredentialStep.js:106 +#: screens/Job/JobDetail/JobDetail.js:264 msgid "Machine Credential" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:102 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AdHocCommands/AdHocCommandsWizard.js:98 msgid "Machine credential" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:63 msgid "Managed" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 -#~ msgid "Managed by Tower" -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:148 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:167 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:148 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:167 msgid "Managed nodes" msgstr "" -#: components/JobList/JobList.jsx:187 -#: components/JobList/JobListItem.jsx:38 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: screens/Job/JobDetail/JobDetail.jsx:82 +#: components/JobList/JobList.js:192 +#: components/JobList/JobListItem.js:39 +#: components/Schedule/ScheduleList/ScheduleListItem.js:39 +#: screens/Job/JobDetail/JobDetail.js:80 msgid "Management Job" msgstr "" -#: routeConfig.jsx:125 -#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:125 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:82 msgid "Management Jobs" msgstr "" -#: screens/ManagementJob/ManagementJobs.jsx:21 +#: screens/ManagementJob/ManagementJobs.js:21 msgid "Management job" msgstr "" -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:111 -#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:111 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:112 msgid "Management job launch error" msgstr "" -#: screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.js:132 msgid "Management job not found." msgstr "" -#: screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.js:14 msgid "Management jobs" msgstr "" -#: components/Lookup/ProjectLookup.jsx:135 -#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: components/Lookup/ProjectLookup.js:135 +#: components/PromptDetail/PromptProjectDetail.js:95 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:121 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:175 -#: screens/Project/ProjectList/ProjectList.jsx:181 -#: screens/Project/ProjectList/ProjectListItem.jsx:211 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/InstanceGroup/Instances/InstanceListItem.js:121 +#: screens/Project/ProjectDetail/ProjectDetail.js:171 +#: screens/Project/ProjectList/ProjectList.js:186 +#: screens/Project/ProjectList/ProjectListItem.js:208 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:97 msgid "Manual" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:118 +#: components/Schedule/shared/FrequencyDetailSubform.js:118 msgid "March" msgstr "" -#: components/NotificationList/NotificationList.jsx:197 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +#: components/NotificationList/NotificationList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:157 msgid "Mattermost" msgstr "" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: screens/Organization/shared/OrganizationForm.jsx:72 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:99 +#: screens/Organization/shared/OrganizationForm.js:71 msgid "Max Hosts" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:215 +#: screens/Template/Survey/SurveyQuestionForm.js:215 msgid "Maximum" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:199 +#: screens/Template/Survey/SurveyQuestionForm.js:199 msgid "Maximum length" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:128 +#: components/Schedule/shared/FrequencyDetailSubform.js:128 msgid "May" msgstr "" -#: screens/Organization/OrganizationList/OrganizationList.jsx:151 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:62 +#: screens/Organization/OrganizationList/OrganizationList.js:151 +#: screens/Organization/OrganizationList/OrganizationListItem.js:62 msgid "Members" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:47 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:47 msgid "Metadata" msgstr "" -#: screens/Metrics/Metrics.jsx:198 +#: screens/Metrics/Metrics.js:198 msgid "Metric" msgstr "" -#: screens/Metrics/Metrics.jsx:170 +#: screens/Metrics/Metrics.js:170 msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:101 msgid "Microsoft Azure Resource Manager" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:209 +#: screens/Template/Survey/SurveyQuestionForm.js:209 msgid "Minimum" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.js:193 msgid "Minimum length" msgstr "" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:34 msgid "" "Minimum number of instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "" -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:44 msgid "" "Minimum percentage of all instances that will be automatically\n" "assigned to this group when new instances come online." msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:143 +#: components/Schedule/shared/ScheduleForm.js:143 msgid "Minute" msgstr "" -#: screens/Setting/Settings.jsx:96 +#: screens/Setting/Settings.js:96 msgid "Miscellaneous Authentication" msgstr "" -#: screens/Setting/SettingList.jsx:105 +#: screens/Setting/SettingList.js:106 msgid "Miscellaneous Authentication settings" msgstr "" -#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.js:99 msgid "Miscellaneous System" msgstr "" -#: screens/Setting/SettingList.jsx:101 +#: screens/Setting/SettingList.js:102 msgid "Miscellaneous System settings" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:104 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +#: components/Workflow/WorkflowNodeHelp.js:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:85 msgid "Missing" msgstr "" -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:64 -#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:106 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:64 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js:106 msgid "Missing resource" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 -#: screens/User/UserTokenList/UserTokenList.jsx:144 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:179 +#: screens/User/UserTokenList/UserTokenList.js:144 msgid "Modified" msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:98 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:117 -#: components/AddRole/AddResourceRole.jsx:60 -#: components/AssociateModal/AssociateModal.jsx:149 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:180 -#: components/LaunchPrompt/steps/InventoryStep.jsx:93 -#: components/Lookup/CredentialLookup.jsx:195 -#: components/Lookup/InventoryLookup.jsx:142 -#: components/Lookup/InventoryLookup.jsx:198 -#: 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:198 -#: components/TemplateList/TemplateList.jsx:215 +#: components/AdHocCommands/AdHocCredentialStep.js:122 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:117 +#: components/AddRole/AddResourceRole.js:60 +#: components/AssociateModal/AssociateModal.js:149 +#: components/LaunchPrompt/steps/CredentialsStep.js:180 +#: components/LaunchPrompt/steps/InventoryStep.js:93 +#: components/Lookup/CredentialLookup.js:198 +#: components/Lookup/InventoryLookup.js:155 +#: components/Lookup/InventoryLookup.js:211 +#: components/Lookup/MultiCredentialsLookup.js:198 +#: components/Lookup/OrganizationLookup.js:137 +#: components/Lookup/ProjectLookup.js:147 +#: components/NotificationList/NotificationList.js:210 +#: components/Schedule/ScheduleList/ScheduleList.js:198 +#: components/TemplateList/TemplateList.js:220 #: 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:139 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:142 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:108 -#: screens/Host/HostGroups/HostGroupsList.jsx:173 -#: screens/Host/HostList/HostList.jsx:158 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:137 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:175 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:130 -#: screens/Inventory/InventoryList/InventoryList.jsx:180 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:100 -#: screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: screens/Project/ProjectList/ProjectList.jsx:193 -#: screens/Team/TeamList/TeamList.jsx:139 -#: 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 +#: screens/Credential/CredentialList/CredentialList.js:139 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:102 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:108 +#: screens/Host/HostGroups/HostGroupsList.js:173 +#: screens/Host/HostList/HostList.js:154 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:199 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:137 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:175 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:130 +#: screens/Inventory/InventoryList/InventoryList.js:192 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:180 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:100 +#: screens/Organization/OrganizationList/OrganizationList.js:142 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:135 +#: screens/Project/ProjectList/ProjectList.js:198 +#: screens/Team/TeamList/TeamList.js:139 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:113 msgid "Modified By (Username)" msgstr "" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:83 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:170 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:78 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:83 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:170 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:78 msgid "Modified by (username)" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:58 -#: screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.js:58 +#: screens/Job/JobOutput/HostEventModal.js:131 msgid "Module" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:253 +#: components/Schedule/shared/FrequencyDetailSubform.js:253 msgid "Mon" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:258 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.js:258 +#: components/Schedule/shared/FrequencyDetailSubform.js:414 msgid "Monday" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:147 +#: components/Schedule/shared/ScheduleForm.js:147 msgid "Month" msgstr "" -#: components/Popover/Popover.jsx:30 +#: components/Popover/Popover.js:30 msgid "More information" msgstr "" -#: screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.js:57 msgid "More information for" msgstr "" -#: screens/Template/Survey/SurveyPreviewModal.jsx:111 -#: screens/Template/Survey/SurveyPreviewModal.jsx:112 +#: screens/Template/Survey/SurveyPreviewModal.js:111 +#: screens/Template/Survey/SurveyPreviewModal.js:112 msgid "Multi-Select" msgstr "" -#: screens/Template/Survey/SurveyPreviewModal.jsx:89 -#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.js:89 +#: screens/Template/Survey/SurveyPreviewModal.js:90 msgid "Multiple Choice" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:92 +#: screens/Template/Survey/SurveyQuestionForm.js:92 msgid "Multiple Choice (multiple select)" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:87 +#: screens/Template/Survey/SurveyQuestionForm.js:87 msgid "Multiple Choice (single select)" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:253 +#: screens/Template/Survey/SurveyQuestionForm.js:253 msgid "Multiple Choice Options" msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:89 -#: components/AdHocCommands/AdHocCredentialStep.jsx:104 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:108 -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:123 -#: components/AddRole/AddResourceRole.jsx:51 -#: components/AddRole/AddResourceRole.jsx:67 -#: components/AssociateModal/AssociateModal.jsx:140 -#: components/AssociateModal/AssociateModal.jsx:155 -#: components/HostForm/HostForm.jsx:96 -#: components/JobList/JobList.jsx:167 -#: components/JobList/JobList.jsx:216 -#: components/JobList/JobListItem.jsx:71 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:171 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:186 -#: 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:175 -#: components/Lookup/ExecutionEnvironmentLookup.jsx:182 -#: components/Lookup/HostFilterLookup.jsx:79 -#: components/Lookup/HostFilterLookup.jsx:364 -#: components/Lookup/HostListItem.jsx:8 -#: components/Lookup/InstanceGroupsLookup.jsx:92 -#: components/Lookup/InstanceGroupsLookup.jsx:103 -#: components/Lookup/InventoryLookup.jsx:133 -#: components/Lookup/InventoryLookup.jsx:148 -#: components/Lookup/InventoryLookup.jsx:189 -#: components/Lookup/InventoryLookup.jsx:204 -#: 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/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:165 -#: components/Schedule/ScheduleList/ScheduleList.jsx:185 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:77 -#: components/Schedule/shared/ScheduleForm.jsx:96 -#: components/TemplateList/TemplateList.jsx:190 -#: components/TemplateList/TemplateList.jsx:223 -#: components/TemplateList/TemplateListItem.jsx:133 +#: components/AdHocCommands/AdHocCredentialStep.js:113 +#: components/AdHocCommands/AdHocCredentialStep.js:128 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:108 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:123 +#: components/AddRole/AddResourceRole.js:51 +#: components/AddRole/AddResourceRole.js:67 +#: components/AssociateModal/AssociateModal.js:140 +#: components/AssociateModal/AssociateModal.js:155 +#: components/HostForm/HostForm.js:97 +#: components/JobList/JobList.js:172 +#: components/JobList/JobList.js:221 +#: components/JobList/JobListItem.js:78 +#: components/LaunchPrompt/steps/CredentialsStep.js:171 +#: components/LaunchPrompt/steps/CredentialsStep.js:186 +#: components/LaunchPrompt/steps/InventoryStep.js:84 +#: components/LaunchPrompt/steps/InventoryStep.js:99 +#: components/Lookup/ApplicationLookup.js:100 +#: components/Lookup/ApplicationLookup.js:111 +#: components/Lookup/CredentialLookup.js:189 +#: components/Lookup/CredentialLookup.js:204 +#: components/Lookup/ExecutionEnvironmentLookup.js:175 +#: components/Lookup/ExecutionEnvironmentLookup.js:182 +#: components/Lookup/HostFilterLookup.js:79 +#: components/Lookup/HostFilterLookup.js:371 +#: components/Lookup/HostListItem.js:8 +#: components/Lookup/InstanceGroupsLookup.js:104 +#: components/Lookup/InstanceGroupsLookup.js:115 +#: components/Lookup/InventoryLookup.js:146 +#: components/Lookup/InventoryLookup.js:161 +#: components/Lookup/InventoryLookup.js:202 +#: components/Lookup/InventoryLookup.js:217 +#: components/Lookup/MultiCredentialsLookup.js:189 +#: components/Lookup/MultiCredentialsLookup.js:204 +#: components/Lookup/OrganizationLookup.js:128 +#: components/Lookup/OrganizationLookup.js:143 +#: components/Lookup/ProjectLookup.js:127 +#: components/Lookup/ProjectLookup.js:157 +#: components/NotificationList/NotificationList.js:181 +#: components/NotificationList/NotificationList.js:218 +#: components/NotificationList/NotificationListItem.js:25 +#: components/OptionsList/OptionsList.js:87 +#: components/PaginatedTable/PaginatedTable.js:72 +#: components/PromptDetail/PromptDetail.js:109 +#: components/ResourceAccessList/ResourceAccessListItem.js:57 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:251 +#: components/Schedule/ScheduleList/ScheduleList.js:165 +#: components/Schedule/ScheduleList/ScheduleList.js:185 +#: components/Schedule/ScheduleList/ScheduleListItem.js:77 +#: components/Schedule/shared/ScheduleForm.js:96 +#: components/TemplateList/TemplateList.js:195 +#: components/TemplateList/TemplateList.js:228 +#: components/TemplateList/TemplateListItem.js:134 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 @@ -5240,304 +5037,307 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: components/Workflow/WorkflowNodeHelp.jsx:132 -#: components/Workflow/WorkflowNodeHelp.jsx:158 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:62 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:113 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:140 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:28 -#: screens/Application/Applications.jsx:78 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:31 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:123 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: screens/Application/shared/ApplicationForm.jsx:53 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:207 -#: screens/Credential/CredentialList/CredentialList.jsx:126 -#: screens/Credential/CredentialList/CredentialList.jsx:145 -#: screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: 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:129 -#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:31 -#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:129 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:91 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:117 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:9 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:94 -#: screens/Host/HostDetail/HostDetail.jsx:74 -#: screens/Host/HostGroups/HostGroupItem.jsx:28 -#: screens/Host/HostGroups/HostGroupsList.jsx:164 -#: screens/Host/HostGroups/HostGroupsList.jsx:181 -#: screens/Host/HostList/HostList.jsx:145 -#: screens/Host/HostList/HostList.jsx:166 -#: screens/Host/HostList/HostListItem.jsx:28 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:269 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:63 -#: screens/InstanceGroup/Instances/InstanceList.jsx:163 -#: screens/InstanceGroup/Instances/InstanceList.jsx:170 -#: screens/InstanceGroup/Instances/InstanceList.jsx:211 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:117 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:47 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:21 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 -#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:119 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:145 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:33 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:183 -#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:33 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:117 -#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:136 -#: 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:154 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:217 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:97 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:74 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:109 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:33 -#: screens/Inventory/shared/InventoryForm.jsx:37 -#: screens/Inventory/shared/InventoryGroupForm.jsx:35 -#: screens/Inventory/shared/InventorySourceForm.jsx:109 -#: 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:69 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:106 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:41 -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:86 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:109 -#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:13 -#: screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: screens/Organization/OrganizationList/OrganizationList.jsx:150 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:69 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:86 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:14 -#: screens/Organization/shared/OrganizationForm.jsx:57 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:126 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:161 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:53 -#: screens/Project/ProjectList/ProjectList.jsx:169 -#: screens/Project/ProjectList/ProjectList.jsx:205 -#: screens/Project/ProjectList/ProjectListItem.jsx:179 -#: screens/Project/shared/ProjectForm.jsx:173 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:147 -#: screens/Team/TeamDetail/TeamDetail.jsx:33 -#: screens/Team/TeamList/TeamList.jsx:122 -#: screens/Team/TeamList/TeamList.jsx:147 -#: screens/Team/TeamList/TeamListItem.jsx:33 -#: screens/Team/shared/TeamForm.jsx:29 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:181 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 -#: screens/Template/shared/JobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:60 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:64 -#: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 -#: screens/User/UserRoles/UserRolesList.jsx:156 -#: screens/User/UserRoles/UserRolesListItem.jsx:12 -#: screens/User/UserTeams/UserTeamList.jsx:186 -#: screens/User/UserTeams/UserTeamList.jsx:239 -#: screens/User/UserTeams/UserTeamListItem.jsx:18 -#: screens/User/UserTokenList/UserTokenList.jsx:177 -#: screens/User/UserTokenList/UserTokenListItem.jsx:20 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:178 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:59 +#: components/Workflow/WorkflowNodeHelp.js:132 +#: components/Workflow/WorkflowNodeHelp.js:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:58 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:113 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:139 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:28 +#: screens/Application/Applications.js:78 +#: screens/Application/ApplicationsList/ApplicationListItem.js:31 +#: screens/Application/ApplicationsList/ApplicationsList.js:123 +#: screens/Application/ApplicationsList/ApplicationsList.js:160 +#: screens/Application/shared/ApplicationForm.js:53 +#: screens/Credential/CredentialDetail/CredentialDetail.js:203 +#: screens/Credential/CredentialList/CredentialList.js:126 +#: screens/Credential/CredentialList/CredentialList.js:145 +#: screens/Credential/CredentialList/CredentialListItem.js:55 +#: screens/Credential/shared/CredentialForm.js:162 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js:93 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:70 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:129 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.js:182 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:31 +#: screens/CredentialType/shared/CredentialTypeForm.js:21 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:48 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:129 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:91 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:117 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:9 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:94 +#: screens/Host/HostDetail/HostDetail.js:69 +#: screens/Host/HostGroups/HostGroupItem.js:28 +#: screens/Host/HostGroups/HostGroupsList.js:164 +#: screens/Host/HostGroups/HostGroupsList.js:181 +#: screens/Host/HostList/HostList.js:141 +#: screens/Host/HostList/HostList.js:162 +#: screens/Host/HostList/HostListItem.js:43 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:42 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:287 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:63 +#: screens/InstanceGroup/Instances/InstanceList.js:163 +#: screens/InstanceGroup/Instances/InstanceList.js:170 +#: screens/InstanceGroup/Instances/InstanceList.js:210 +#: screens/InstanceGroup/Instances/InstanceListItem.js:117 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:47 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:21 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:70 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:31 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:211 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.js:34 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:119 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:145 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:71 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js:33 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:166 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:183 +#: screens/Inventory/InventoryHosts/InventoryHostItem.js:33 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:117 +#: screens/Inventory/InventoryHosts/InventoryHostList.js:136 +#: screens/Inventory/InventoryList/InventoryList.js:167 +#: screens/Inventory/InventoryList/InventoryList.js:198 +#: screens/Inventory/InventoryList/InventoryList.js:207 +#: screens/Inventory/InventoryList/InventoryListItem.js:79 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:218 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:150 +#: screens/Inventory/InventorySources/InventorySourceList.js:216 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:64 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:93 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:27 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:74 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:108 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:33 +#: screens/Inventory/shared/InventoryForm.js:34 +#: screens/Inventory/shared/InventoryGroupForm.js:32 +#: screens/Inventory/shared/InventorySourceForm.js:106 +#: screens/Inventory/shared/SmartInventoryForm.js:49 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.js:98 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.js:67 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:69 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:141 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:106 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:41 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:93 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:86 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js:109 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js:13 +#: screens/Organization/OrganizationList/OrganizationList.js:129 +#: screens/Organization/OrganizationList/OrganizationList.js:150 +#: screens/Organization/OrganizationList/OrganizationListItem.js:44 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:69 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:86 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.js:14 +#: screens/Organization/shared/OrganizationForm.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:155 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:126 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:160 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:53 +#: screens/Project/ProjectList/ProjectList.js:174 +#: screens/Project/ProjectList/ProjectList.js:210 +#: screens/Project/ProjectList/ProjectListItem.js:176 +#: screens/Project/shared/ProjectForm.js:170 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:147 +#: screens/Team/TeamDetail/TeamDetail.js:33 +#: screens/Team/TeamList/TeamList.js:122 +#: screens/Team/TeamList/TeamList.js:147 +#: screens/Team/TeamList/TeamListItem.js:33 +#: screens/Team/shared/TeamForm.js:29 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:181 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:96 +#: screens/Template/shared/JobTemplateForm.js:241 +#: screens/Template/shared/WorkflowJobTemplateForm.js:107 +#: screens/User/UserOrganizations/UserOrganizationList.js:60 +#: screens/User/UserOrganizations/UserOrganizationList.js:64 +#: screens/User/UserOrganizations/UserOrganizationListItem.js:10 +#: screens/User/UserRoles/UserRolesList.js:156 +#: screens/User/UserRoles/UserRolesListItem.js:12 +#: screens/User/UserTeams/UserTeamList.js:186 +#: screens/User/UserTeams/UserTeamList.js:238 +#: screens/User/UserTeams/UserTeamListItem.js:18 +#: screens/User/UserTokenList/UserTokenList.js:176 +#: screens/User/UserTokenList/UserTokenListItem.js:20 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:82 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:178 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:228 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:59 msgid "Name" msgstr "" -#: components/AppContainer/AppContainer.jsx:94 +#: components/AppContainer/AppContainer.js:94 msgid "Navigation" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:493 -#: screens/Dashboard/shared/ChartTooltip.jsx:106 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.js:493 +#: screens/Dashboard/shared/ChartTooltip.js:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:97 msgid "Never" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.js:98 msgid "Never Updated" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:44 -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:44 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:12 msgid "Never expires" msgstr "" -#: components/JobList/JobList.jsx:199 -#: components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.js:204 +#: components/Workflow/WorkflowNodeHelp.js:74 msgid "New" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:81 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:93 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:116 -#: components/AddRole/AddResourceRole.jsx:215 -#: components/AddRole/AddResourceRole.jsx:250 -#: components/LaunchPrompt/LaunchPrompt.jsx:130 -#: components/Schedule/shared/SchedulePromptableFields.jsx:138 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:59 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +#: components/AdHocCommands/AdHocCommandsWizard.js:80 +#: components/AdHocCommands/AdHocCommandsWizard.js:92 +#: components/AddRole/AddResourceRole.js:215 +#: components/AddRole/AddResourceRole.js:250 +#: components/LaunchPrompt/LaunchPrompt.js:130 +#: components/Schedule/shared/SchedulePromptableFields.js:138 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:118 msgid "Next" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 -#: components/Schedule/ScheduleList/ScheduleList.jsx:167 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:101 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:105 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:254 +#: components/Schedule/ScheduleList/ScheduleList.js:167 +#: components/Schedule/ScheduleList/ScheduleListItem.js:101 +#: components/Schedule/ScheduleList/ScheduleListItem.js:105 msgid "Next Run" msgstr "" -#: components/Search/Search.jsx:262 +#: components/Search/Search.js:262 msgid "No" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:749 +#: screens/Job/JobOutput/JobOutput.js:763 msgid "No Hosts Matched" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:737 -#: screens/Job/JobOutput/JobOutput.jsx:750 +#: screens/Job/JobOutput/JobOutput.js:751 +#: screens/Job/JobOutput/JobOutput.js:764 msgid "No Hosts Remaining" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:155 +#: screens/Job/JobOutput/HostEventModal.js:155 msgid "No JSON Available" msgstr "" -#: screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.js:82 msgid "No Jobs" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:191 +#: screens/Job/JobOutput/HostEventModal.js:191 msgid "No Standard Error Available" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:173 +#: screens/Job/JobOutput/HostEventModal.js:173 msgid "No Standard Out Available" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:63 +#: screens/Inventory/InventoryList/InventoryListItem.js:63 msgid "No inventory sync failures." msgstr "" -#: components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.js:16 msgid "No items found." msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:132 +#: screens/Host/HostList/HostListItem.js:86 +msgid "No job data available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.js:132 msgid "No result found" msgstr "" -#: components/Search/AdvancedSearch.jsx:110 -#: components/Search/AdvancedSearch.jsx:149 -#: components/Search/AdvancedSearch.jsx:188 -#: components/Search/AdvancedSearch.jsx:316 +#: components/Search/AdvancedSearch.js:114 +#: components/Search/AdvancedSearch.js:153 +#: components/Search/AdvancedSearch.js:192 +#: components/Search/AdvancedSearch.js:320 msgid "No results found" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:116 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:138 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:116 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:138 msgid "No subscriptions found" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:175 +#: screens/Template/Survey/SurveyList.js:175 msgid "No survey questions found." msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.js:80 msgid "No {pluralizedItemName} Found" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:77 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:74 msgid "Node Type" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js:70 msgid "Node type" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.js:107 msgid "None" msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:143 msgid "None (Run Once)" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:142 +#: components/Schedule/shared/ScheduleForm.js:142 msgid "None (run once)" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:46 -#: screens/User/UserList/UserListItem.jsx:23 -#: screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.js:47 +#: screens/User/UserList/UserListItem.js:23 +#: screens/User/shared/UserForm.js:29 msgid "Normal User" msgstr "" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Not Found" msgstr "" -#: screens/Setting/shared/SettingDetail.jsx:58 -#: screens/Setting/shared/SettingDetail.jsx:99 +#: screens/Setting/shared/SettingDetail.js:58 +#: screens/Setting/shared/SettingDetail.js:99 msgid "Not configured" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:66 +#: screens/Inventory/InventoryList/InventoryListItem.js:66 msgid "Not configured for inventory sync." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:238 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" "directly from the sub-group level that they belong." msgstr "" -#: screens/Host/HostGroups/HostGroupsList.jsx:218 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:223 +#: screens/Host/HostGroups/HostGroupsList.js:217 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:222 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" @@ -5545,19 +5345,19 @@ msgid "" "with directly and indirectly." msgstr "" -#: screens/Host/HostGroups/HostGroupsList.jsx:212 -#~ msgid "" -#~ "Note that you may still see the group in the list after\n" -#~ "disassociating if the host is also a member of that group’s \n" -#~ "children. This list shows all groups the host is associated \n" -#~ "with directly and indirectly." -#~ msgstr "" +#: components/Lookup/InstanceGroupsLookup.js:91 +msgid "Note: The order in which these are selected sets the execution precedence. Select more than one to enable drag." +msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:61 +#: screens/Organization/shared/OrganizationForm.js:116 +msgid "Note: The order of these credentials sets precedence for the sync and lookup of the content. Select more than one to enable drag." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:61 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:38 msgid "" "Note: When using SSH protocol for GitHub or\n" "Bitbucket, enter an SSH key only, do not enter a username\n" @@ -5567,330 +5367,319 @@ msgid "" "password information." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:276 msgid "Notification Color" msgstr "" -#: screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +#: screens/NotificationTemplate/NotificationTemplate.js:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:50 msgid "Notification Template not found." msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:193 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:191 -#: screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: screens/NotificationTemplate/NotificationTemplates.jsx:20 +#: screens/ActivityStream/ActivityStream.js:189 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:136 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:190 +#: screens/NotificationTemplate/NotificationTemplates.js:13 +#: screens/NotificationTemplate/NotificationTemplates.js:20 #: util/getRelatedResourceDeleteDetails.js:180 msgid "Notification Templates" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:90 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:90 msgid "Notification Type" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:376 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:376 msgid "Notification color" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:250 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:249 msgid "Notification sent successfully" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:254 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:253 msgid "Notification timed out" msgstr "" -#: components/NotificationList/NotificationList.jsx:190 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: components/NotificationList/NotificationList.js:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:150 msgid "Notification type" msgstr "" -#: components/NotificationList/NotificationList.jsx:177 -#: routeConfig.jsx:120 -#: screens/Inventory/Inventories.jsx:91 -#: screens/Inventory/InventorySource/InventorySource.jsx:104 -#: screens/ManagementJob/ManagementJob.jsx:115 -#: screens/ManagementJob/ManagementJobs.jsx:23 -#: screens/Organization/Organization.jsx:135 -#: screens/Organization/Organizations.jsx:33 -#: screens/Project/Project.jsx:111 -#: screens/Project/Projects.jsx:30 -#: screens/Template/Template.jsx:141 -#: screens/Template/Templates.jsx:45 -#: screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.js:177 +#: routeConfig.js:120 +#: screens/Inventory/Inventories.js:91 +#: screens/Inventory/InventorySource/InventorySource.js:100 +#: screens/ManagementJob/ManagementJob.js:115 +#: screens/ManagementJob/ManagementJobs.js:23 +#: screens/Organization/Organization.js:135 +#: screens/Organization/Organizations.js:33 +#: screens/Project/Project.js:111 +#: screens/Project/Projects.js:30 +#: screens/Template/Template.js:141 +#: screens/Template/Templates.js:45 +#: screens/Template/WorkflowJobTemplate.js:127 msgid "Notifications" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:158 +#: components/Schedule/shared/FrequencyDetailSubform.js:158 msgid "November" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:101 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.js:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:66 +#: screens/Job/JobOutput/shared/HostStatusBar.js:35 msgid "OK" msgstr "" -#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:527 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:42 +#: components/Schedule/shared/FrequencyDetailSubform.js:527 msgid "Occurrences" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:153 +#: components/Schedule/shared/FrequencyDetailSubform.js:153 msgid "October" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:208 -#: components/HostToggle/HostToggle.jsx:56 -#: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:158 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:53 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:144 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:234 -#: screens/Template/Survey/SurveyToolbar.jsx:53 -#: screens/Template/shared/JobTemplateForm.jsx:508 +#: components/AdHocCommands/AdHocDetailsStep.js:208 +#: components/HostToggle/HostToggle.js:56 +#: components/InstanceToggle/InstanceToggle.js:51 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:186 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:53 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:138 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:53 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "Off" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:207 -#: components/HostToggle/HostToggle.jsx:55 -#: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: components/PromptDetail/PromptDetail.jsx:244 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:158 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:52 -#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:47 -#: screens/Setting/shared/SettingDetail.jsx:85 -#: screens/Setting/shared/SharedFields.jsx:143 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:234 -#: screens/Template/Survey/SurveyToolbar.jsx:52 -#: screens/Template/shared/JobTemplateForm.jsx:508 +#: components/AdHocCommands/AdHocDetailsStep.js:207 +#: components/HostToggle/HostToggle.js:55 +#: components/InstanceToggle/InstanceToggle.js:50 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:185 +#: components/PromptDetail/PromptDetail.js:244 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:311 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:52 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:43 +#: screens/Setting/shared/SettingDetail.js:85 +#: screens/Setting/shared/SharedFields.js:137 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/Survey/SurveyToolbar.js:52 +#: screens/Template/shared/JobTemplateForm.js:508 msgid "On" msgstr "" -#: components/Workflow/WorkflowLegend.jsx:122 -#: components/Workflow/WorkflowLinkHelp.jsx:30 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:40 +#: components/Workflow/WorkflowLegend.js:122 +#: components/Workflow/WorkflowLinkHelp.js:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:40 msgid "On Failure" msgstr "" -#: components/Workflow/WorkflowLegend.jsx:118 -#: components/Workflow/WorkflowLinkHelp.jsx:27 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:33 +#: components/Workflow/WorkflowLegend.js:118 +#: components/Workflow/WorkflowLinkHelp.js:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:33 msgid "On Success" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:515 +#: components/Schedule/shared/FrequencyDetailSubform.js:515 msgid "On date" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:239 +#: components/Schedule/shared/FrequencyDetailSubform.js:239 msgid "On days" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:171 +#: components/PromptDetail/PromptInventorySourceDetail.js:171 msgid "Only Group By" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:104 msgid "OpenStack" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:117 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:114 msgid "Option Details" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:398 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.js:398 +#: screens/Template/shared/WorkflowJobTemplateForm.js:198 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" "job templates and completed jobs." msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:210 +#: screens/Template/shared/WebhookSubForm.js:210 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "" -#: components/NotificationList/NotificationList.jsx:220 -#: components/NotificationList/NotificationListItem.jsx:31 -#: screens/Credential/shared/TypeInputsSubForm.jsx:47 -#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:67 -#: screens/Template/shared/JobTemplateForm.jsx:555 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:222 +#: components/NotificationList/NotificationList.js:220 +#: components/NotificationList/NotificationListItem.js:31 +#: screens/Credential/shared/TypeInputsSubForm.js:47 +#: screens/InstanceGroup/shared/ContainerGroupForm.js:65 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:64 +#: screens/Template/shared/JobTemplateForm.js:555 +#: screens/Template/shared/WorkflowJobTemplateForm.js:222 msgid "Options" msgstr "" -#: components/Lookup/ApplicationLookup.jsx:119 -#: components/Lookup/OrganizationLookup.jsx:101 -#: components/Lookup/OrganizationLookup.jsx:107 -#: components/Lookup/OrganizationLookup.jsx:123 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:80 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:90 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:110 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:120 -#: components/PromptDetail/PromptProjectDetail.jsx:76 -#: components/PromptDetail/PromptProjectDetail.jsx:86 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:65 -#: components/TemplateList/TemplateListItem.jsx:263 -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:72 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:36 -#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:220 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:148 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 -#: screens/Inventory/InventoryList/InventoryList.jsx:198 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:96 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:159 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:107 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:77 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 -#: screens/Project/ProjectList/ProjectListItem.jsx:279 -#: screens/Project/ProjectList/ProjectListItem.jsx:290 -#: screens/Team/TeamDetail/TeamDetail.jsx:36 -#: screens/Team/TeamList/TeamList.jsx:148 -#: screens/Team/TeamList/TeamListItem.jsx:38 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:196 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 -#: screens/User/UserTeams/UserTeamList.jsx:187 -#: screens/User/UserTeams/UserTeamList.jsx:244 -#: screens/User/UserTeams/UserTeamListItem.jsx:23 +#: components/Lookup/ApplicationLookup.js:119 +#: components/Lookup/OrganizationLookup.js:101 +#: components/Lookup/OrganizationLookup.js:107 +#: components/Lookup/OrganizationLookup.js:123 +#: components/PromptDetail/PromptInventorySourceDetail.js:80 +#: components/PromptDetail/PromptInventorySourceDetail.js:90 +#: components/PromptDetail/PromptJobTemplateDetail.js:110 +#: components/PromptDetail/PromptJobTemplateDetail.js:120 +#: components/PromptDetail/PromptProjectDetail.js:76 +#: components/PromptDetail/PromptProjectDetail.js:86 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:65 +#: components/TemplateList/TemplateListItem.js:264 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:68 +#: screens/Application/ApplicationsList/ApplicationListItem.js:36 +#: screens/Application/ApplicationsList/ApplicationsList.js:162 +#: screens/Credential/CredentialDetail/CredentialDetail.js:216 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:68 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:148 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:63 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:77 +#: screens/Inventory/InventoryList/InventoryList.js:180 +#: screens/Inventory/InventoryList/InventoryList.js:210 +#: screens/Inventory/InventoryList/InventoryListItem.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:155 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:103 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:77 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:87 +#: screens/Project/ProjectDetail/ProjectDetail.js:159 +#: screens/Project/ProjectList/ProjectListItem.js:276 +#: screens/Project/ProjectList/ProjectListItem.js:287 +#: screens/Team/TeamDetail/TeamDetail.js:36 +#: screens/Team/TeamList/TeamList.js:148 +#: screens/Team/TeamList/TeamListItem.js:38 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:186 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:121 +#: screens/User/UserTeams/UserTeamList.js:187 +#: screens/User/UserTeams/UserTeamList.js:243 +#: screens/User/UserTeams/UserTeamListItem.js:23 msgid "Organization" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js:101 msgid "Organization (Name)" msgstr "" -#: screens/Team/TeamList/TeamList.jsx:131 +#: screens/Team/TeamList/TeamList.js:131 msgid "Organization Name" msgstr "" -#: screens/Organization/Organization.jsx:154 +#: screens/Organization/Organization.js:154 msgid "Organization not found." msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: routeConfig.jsx:94 -#: screens/ActivityStream/ActivityStream.jsx:176 -#: screens/Organization/OrganizationList/OrganizationList.jsx:124 -#: screens/Organization/OrganizationList/OrganizationList.jsx:171 -#: screens/Organization/Organizations.jsx:16 -#: screens/Organization/Organizations.jsx:26 -#: screens/User/User.jsx:65 -#: screens/User/UserOrganizations/UserOrganizationList.jsx:57 -#: screens/User/Users.jsx:33 +#: routeConfig.js:94 +#: screens/ActivityStream/ActivityStream.js:172 +#: screens/Organization/OrganizationList/OrganizationList.js:124 +#: screens/Organization/OrganizationList/OrganizationList.js:170 +#: screens/Organization/Organizations.js:16 +#: screens/Organization/Organizations.js:26 +#: screens/User/User.js:65 +#: screens/User/UserOrganizations/UserOrganizationList.js:57 +#: screens/User/Users.js:33 #: util/getRelatedResourceDeleteDetails.js:231 #: util/getRelatedResourceDeleteDetails.js:265 msgid "Organizations" msgstr "" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 +#: components/LaunchPrompt/steps/useOtherPromptsStep.js:83 msgid "Other prompts" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:65 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:61 msgid "Out of compliance" msgstr "" -#: screens/Job/Job.jsx:104 -#: screens/Job/Jobs.jsx:27 +#: screens/Job/Job.js:104 +#: screens/Job/Jobs.js:27 msgid "Output" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:128 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:125 msgid "Overwrite" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:49 -#~ msgid "Overwrite Variables" -#~ msgstr "" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121 +#: components/PromptDetail/PromptInventorySourceDetail.js:54 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:117 msgid "Overwrite local groups and hosts from remote inventory source" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:59 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: components/PromptDetail/PromptInventorySourceDetail.js:59 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:122 msgid "Overwrite local variables from remote inventory source" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:146 msgid "Overwrite variables" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:489 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:489 msgid "POST" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:490 msgid "PUT" msgstr "" -#: components/NotificationList/NotificationList.jsx:198 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +#: components/NotificationList/NotificationList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:158 msgid "Pagerduty" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:226 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:226 msgid "Pagerduty Subdomain" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:295 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:295 msgid "Pagerduty subdomain" msgstr "" -#: components/Pagination/Pagination.jsx:35 +#: components/Pagination/Pagination.js:35 msgid "Pagination" msgstr "" -#: components/Workflow/WorkflowTools.jsx:165 +#: components/Workflow/WorkflowTools.js:165 msgid "Pan Down" msgstr "" -#: components/Workflow/WorkflowTools.jsx:132 +#: components/Workflow/WorkflowTools.js:132 msgid "Pan Left" msgstr "" -#: components/Workflow/WorkflowTools.jsx:176 +#: components/Workflow/WorkflowTools.js:176 msgid "Pan Right" msgstr "" -#: components/Workflow/WorkflowTools.jsx:143 +#: components/Workflow/WorkflowTools.js:143 msgid "Pan Up" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:261 +#: components/AdHocCommands/AdHocDetailsStep.js:261 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:393 -#~ msgid "" -#~ "Pass extra command line variables to the playbook. This is the\n" -#~ "-e or --extra-vars command line parameter for ansible-playbook.\n" -#~ "Provide key/value pairs using either YAML or JSON. Refer to the\n" -#~ "Ansible Tower documentation for example syntax." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:417 +#: screens/Template/shared/JobTemplateForm.js:417 msgid "" "Pass extra command line variables to the playbook. This is the\n" "-e or --extra-vars command line parameter for ansible-playbook.\n" @@ -5898,204 +5687,172 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/WorkflowJobTemplateForm.js:219 msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:242 -#~ msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the documentation for example syntax." -#~ msgstr "" - -#: screens/Login/Login.jsx:197 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:70 -#: 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:77 +#: screens/Login/Login.js:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:70 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:101 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:215 +#: screens/Template/Survey/SurveyQuestionForm.js:83 +#: screens/User/shared/UserForm.js:89 msgid "Password" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:117 +#: screens/Dashboard/DashboardGraph.js:117 msgid "Past 24 hours" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:108 +#: screens/Dashboard/DashboardGraph.js:108 msgid "Past month" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:111 +#: screens/Dashboard/DashboardGraph.js:111 msgid "Past two weeks" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:114 +#: screens/Dashboard/DashboardGraph.js:114 msgid "Past week" msgstr "" -#: components/JobList/JobList.jsx:200 -#: components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.js:205 +#: components/Workflow/WorkflowNodeHelp.js:77 msgid "Pending" msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:85 +#: components/AppContainer/PageHeaderToolbar.js:85 msgid "Pending Workflow Approvals" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:105 +#: screens/Inventory/InventoryList/InventoryListItem.js:105 msgid "Pending delete" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:332 +#: components/Lookup/HostFilterLookup.js:339 msgid "Perform a search to define a host filter" msgstr "" -#: screens/User/UserTokenList/UserTokenListItem.jsx:43 -#~ msgid "Personal access token" -#~ msgstr "" - -#: screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.js:128 msgid "Play" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:85 +#: screens/Job/JobOutput/shared/OutputToolbar.js:82 msgid "Play Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:754 +#: screens/Job/JobOutput/JobOutput.js:768 msgid "Play Started" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:153 -#: screens/Job/JobDetail/JobDetail.jsx:220 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: screens/Template/shared/JobTemplateForm.jsx:358 +#: components/PromptDetail/PromptJobTemplateDetail.js:153 +#: screens/Job/JobDetail/JobDetail.js:229 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:229 +#: screens/Template/shared/JobTemplateForm.js:358 msgid "Playbook" msgstr "" -#: components/JobList/JobListItem.jsx:36 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Check" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:755 +#: screens/Job/JobOutput/JobOutput.js:769 msgid "Playbook Complete" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:122 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:231 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:80 +#: components/PromptDetail/PromptProjectDetail.js:122 +#: screens/Project/ProjectDetail/ProjectDetail.js:227 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:80 msgid "Playbook Directory" msgstr "" -#: components/JobList/JobList.jsx:185 -#: components/JobList/JobListItem.jsx:36 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: screens/Job/JobDetail/JobDetail.jsx:80 +#: components/JobList/JobList.js:190 +#: components/JobList/JobListItem.js:37 +#: components/Schedule/ScheduleList/ScheduleListItem.js:37 +#: screens/Job/JobDetail/JobDetail.js:78 msgid "Playbook Run" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:746 +#: screens/Job/JobOutput/JobOutput.js:760 msgid "Playbook Started" msgstr "" -#: components/TemplateList/TemplateList.jsx:207 +#: components/TemplateList/TemplateList.js:212 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js:96 msgid "Playbook name" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:143 +#: screens/Dashboard/DashboardGraph.js:143 msgid "Playbook run" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:86 +#: screens/Job/JobOutput/shared/OutputToolbar.js:83 msgid "Plays" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.js:177 msgid "Please add survey questions." msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.js:93 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx:44 -#~ msgid "Please agree to End User License Agreement before proceeding." -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:43 msgid "Please click the Start button to begin." msgstr "" -#: util/validators.jsx:136 +#: util/validators.js:137 msgid "Please enter a valid URL" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:19 +#: screens/User/shared/UserTokenForm.js:19 msgid "Please enter a value." msgstr "" -#: screens/Login/Login.jsx:162 +#: screens/Login/Login.js:162 msgid "Please log in" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:567 +#: components/Schedule/shared/ScheduleForm.js:568 msgid "Please select a day number between 1 and 31." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:173 +#: screens/Template/shared/JobTemplateForm.js:173 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:559 +#: components/Schedule/shared/ScheduleForm.js:560 msgid "Please select an end date/time that comes after the start date/time." msgstr "" -#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/HostFilterLookup.js:328 msgid "Please select an organization before editing the host filter" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:81 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:78 msgid "Pod spec override" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:29 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:65 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:29 msgid "Policy instance minimum" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:69 -#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:39 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:70 +#: screens/InstanceGroup/shared/InstanceGroupForm.js:39 msgid "Policy instance percentage" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:69 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.js:69 msgid "Populate field from an external secret management system" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:288 -#~ msgid "" -#~ "Populate the hosts for this inventory by using a search\n" -#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" -#~ "Refer to the Ansible Tower documentation for further syntax and\n" -#~ "examples." -#~ msgstr "" - -#: components/Lookup/HostFilterLookup.jsx:288 -#~ msgid "" -#~ "Populate the hosts for this inventory by using a search\n" -#~ "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" -#~ "Refer to the documentation for further syntax and\n" -#~ "examples." -#~ msgstr "" - -#: components/Lookup/HostFilterLookup.jsx:311 +#: components/Lookup/HostFilterLookup.js:318 msgid "" "Populate the hosts for this inventory by using a search\n" "filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" @@ -6104,143 +5861,141 @@ msgid "" "examples." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:120 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:102 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:120 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:102 msgid "Port" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:214 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:211 msgid "Preconditions for running this node when there are multiple parents. Refer to the" msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:64 +#: screens/Template/Survey/MultipleChoiceField.js:64 msgid "" "Press 'Enter' to add more answer choices. One answer\n" "choice per line." msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:58 -#~ msgid "Press 'Enter' to add more answer choices. One answer choice per line." -#~ msgstr "" - -#: components/CodeEditor/CodeEditor.jsx:187 +#: components/CodeEditor/CodeEditor.js:187 msgid "Press Enter to edit. Press ESC to stop editing." msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:121 -#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: screens/Template/Survey/SurveyList.jsx:162 -#: screens/Template/Survey/SurveyList.jsx:164 +#: components/SelectedList/DraggableSelectedList.js:85 +msgid "" +"Press space or enter to begin dragging,\n" +"and use the arrow keys to navigate up or down.\n" +"Press enter to confirm the drag, or any other key to\n" +"cancel the drag operation." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.js:23 +#: screens/Template/Survey/SurveyList.js:162 +#: screens/Template/Survey/SurveyList.js:164 msgid "Preview" msgstr "" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:103 msgid "Private key passphrase" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: screens/Template/shared/JobTemplateForm.jsx:561 +#: components/PromptDetail/PromptJobTemplateDetail.js:65 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:128 +#: screens/Template/shared/JobTemplateForm.js:561 msgid "Privilege Escalation" msgstr "" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:111 msgid "Privilege escalation password" msgstr "" -#: components/JobList/JobListItem.jsx:197 -#: components/Lookup/ProjectLookup.jsx:105 -#: components/Lookup/ProjectLookup.jsx:110 -#: components/Lookup/ProjectLookup.jsx:166 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: components/TemplateList/TemplateListItem.jsx:291 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173 -#: screens/Job/JobDetail/JobDetail.jsx:188 -#: screens/Job/JobDetail/JobDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:211 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:219 +#: components/JobList/JobListItem.js:204 +#: components/Lookup/ProjectLookup.js:105 +#: components/Lookup/ProjectLookup.js:110 +#: components/Lookup/ProjectLookup.js:166 +#: components/PromptDetail/PromptInventorySourceDetail.js:105 +#: components/PromptDetail/PromptJobTemplateDetail.js:138 +#: components/PromptDetail/PromptJobTemplateDetail.js:146 +#: components/TemplateList/TemplateListItem.js:292 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:169 +#: screens/Job/JobDetail/JobDetail.js:205 +#: screens/Job/JobDetail/JobDetail.js:219 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:211 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:219 msgid "Project" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:119 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:228 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:119 +#: screens/Project/ProjectDetail/ProjectDetail.js:224 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:58 msgid "Project Base Path" msgstr "" -#: components/Workflow/WorkflowLegend.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:104 +#: components/Workflow/WorkflowLegend.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:101 msgid "Project Sync" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:261 -#: screens/Project/ProjectList/ProjectListItem.jsx:221 +#: screens/Project/ProjectDetail/ProjectDetail.js:257 +#: screens/Project/ProjectList/ProjectListItem.js:218 msgid "Project Sync Error" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.js:55 msgid "Project Update" msgstr "" -#: screens/Project/Project.jsx:139 +#: screens/Project/Project.js:139 msgid "Project not found." msgstr "" -#: screens/Dashboard/Dashboard.jsx:109 +#: screens/Dashboard/Dashboard.js:109 msgid "Project sync failures" msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: routeConfig.jsx:73 -#: screens/ActivityStream/ActivityStream.jsx:165 -#: screens/Dashboard/Dashboard.jsx:103 -#: screens/Project/ProjectList/ProjectList.jsx:164 -#: screens/Project/ProjectList/ProjectList.jsx:232 -#: screens/Project/Projects.jsx:14 -#: screens/Project/Projects.jsx:24 +#: routeConfig.js:73 +#: screens/ActivityStream/ActivityStream.js:161 +#: screens/Dashboard/Dashboard.js:103 +#: screens/Project/ProjectList/ProjectList.js:169 +#: screens/Project/ProjectList/ProjectList.js:238 +#: screens/Project/Projects.js:14 +#: screens/Project/Projects.js:24 #: util/getRelatedResourceDeleteDetails.js:59 #: util/getRelatedResourceDeleteDetails.js:194 #: util/getRelatedResourceDeleteDetails.js:224 msgid "Projects" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:134 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:134 msgid "Promote Child Groups and Hosts" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:617 -#: components/Schedule/shared/ScheduleForm.jsx:620 +#: components/Schedule/shared/ScheduleForm.js:618 +#: components/Schedule/shared/ScheduleForm.js:621 msgid "Prompt" msgstr "" -#: components/PromptDetail/PromptDetail.jsx:148 +#: components/PromptDetail/PromptDetail.js:148 msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:240 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:165 +#: components/CodeEditor/VariablesField.js:240 +#: components/FieldWithPrompt/FieldWithPrompt.js:46 +#: screens/Credential/CredentialDetail/CredentialDetail.js:161 msgid "Prompt on launch" msgstr "" -#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +#: components/Schedule/shared/SchedulePromptableFields.js:108 msgid "Prompt | {0}" msgstr "" -#: components/PromptDetail/PromptDetail.jsx:146 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 +#: components/PromptDetail/PromptDetail.js:146 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:275 msgid "Prompted Values" msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:107 -#: components/Schedule/shared/SchedulePromptableFields.jsx:110 -#~ msgid "Prompts" -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:447 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 +#: screens/Template/shared/JobTemplateForm.js:447 +#: screens/Template/shared/WorkflowJobTemplateForm.js:159 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6248,7 +6003,7 @@ msgid "" "documentation for more information and examples on patterns." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:36 msgid "" "Provide a host pattern to further constrain the list\n" "of hosts that will be managed or affected by the playbook. Multiple\n" @@ -6256,17 +6011,17 @@ msgid "" "information and examples on patterns." msgstr "" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:162 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:174 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:265 +#: components/AdHocCommands/AdHocDetailsStep.js:265 msgid "" "Provide key/value pairs using either\n" "YAML or JSON." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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" @@ -6274,837 +6029,818 @@ msgid "" "retrieving renewal or expanded subscriptions." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:83 msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." -#~ msgstr "" - -#: components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: screens/Template/shared/JobTemplateForm.jsx:632 +#: components/PromptDetail/PromptJobTemplateDetail.js:164 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:240 +#: screens/Template/shared/JobTemplateForm.js:632 msgid "Provisioning Callback URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:627 +#: screens/Template/shared/JobTemplateForm.js:627 msgid "Provisioning Callback details" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:70 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 -#: screens/Template/shared/JobTemplateForm.jsx:566 -#: screens/Template/shared/JobTemplateForm.jsx:569 +#: components/PromptDetail/PromptJobTemplateDetail.js:70 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:133 +#: screens/Template/shared/JobTemplateForm.js:566 +#: screens/Template/shared/JobTemplateForm.js:569 msgid "Provisioning Callbacks" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:84 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:134 msgid "Pull" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:158 +#: screens/Template/Survey/SurveyQuestionForm.js:158 msgid "Question" msgstr "" -#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.js:102 msgid "RADIUS" msgstr "" -#: screens/Setting/SettingList.jsx:71 +#: screens/Setting/SettingList.js:72 msgid "RADIUS settings" msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:143 +#: screens/InstanceGroup/Instances/InstanceListItem.js:143 msgid "RAM {0}" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:79 +#: screens/User/shared/UserTokenForm.js:79 msgid "Read" msgstr "" -#: screens/Dashboard/Dashboard.jsx:131 +#: screens/Dashboard/Dashboard.js:131 msgid "Recent Jobs" msgstr "" -#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Dashboard/Dashboard.js:129 msgid "Recent Jobs list tab" msgstr "" -#: screens/Dashboard/Dashboard.jsx:142 +#: screens/Dashboard/Dashboard.js:142 msgid "Recent Templates" msgstr "" -#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Dashboard/Dashboard.js:140 msgid "Recent Templates list tab" msgstr "" -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:110 -#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:36 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:163 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:76 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js:109 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js:36 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:162 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:76 msgid "Recent jobs" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:110 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:110 msgid "Recipient List" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:83 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:83 msgid "Recipient list" msgstr "" -#: components/Lookup/ProjectLookup.jsx:139 +#: components/Lookup/ProjectLookup.js:139 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: screens/Project/ProjectList/ProjectList.jsx:185 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 +#: screens/Project/ProjectList/ProjectList.js:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:101 msgid "Red Hat Insights" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:103 msgid "Red Hat Satellite 6" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:105 msgid "Red Hat Virtualization" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:118 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:118 msgid "Red Hat subscription manifest" msgstr "" -#: components/About/About.jsx:28 +#: components/About/About.js:28 msgid "Red Hat, Inc." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:106 +#: screens/Application/shared/ApplicationForm.js:106 msgid "Redirect URIs" msgstr "" -#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:95 +#: screens/Application/ApplicationDetails/ApplicationDetails.js:91 msgid "Redirect uris" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:259 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:259 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:263 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:263 msgid "Redirecting to subscription detail" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:256 +#: screens/Template/Survey/SurveyQuestionForm.js:256 msgid "Refer to the" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:437 +#: screens/Template/shared/JobTemplateForm.js:437 msgid "" "Refer to the Ansible documentation for details\n" "about the configuration file." msgstr "" -#: screens/User/UserTokens/UserTokens.jsx:76 +#: screens/User/UserTokens/UserTokens.js:76 msgid "Refresh Token" msgstr "" -#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx:82 +#: screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js:82 msgid "Refresh Token Expiration" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:133 +#: screens/Project/ProjectList/ProjectListItem.js:130 msgid "Refresh for revision" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:135 +#: screens/Project/ProjectList/ProjectListItem.js:132 msgid "Refresh project revision" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:135 +#: components/PromptDetail/PromptInventorySourceDetail.js:135 msgid "Regions" msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:163 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:163 msgid "Registry credential" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:273 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:270 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "" -#: screens/Inventory/Inventories.jsx:79 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 +#: screens/Inventory/Inventories.js:79 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:166 msgid "Related Groups" msgstr "" -#: components/Search/AdvancedSearch.jsx:139 -#: components/Search/AdvancedSearch.jsx:147 +#: components/Search/AdvancedSearch.js:143 +#: components/Search/AdvancedSearch.js:151 msgid "Related search type" msgstr "" -#: components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.js:146 msgid "Related search type typeahead" msgstr "" -#: components/JobList/JobListItem.jsx:130 -#: components/LaunchButton/ReLaunchDropDown.jsx:81 -#: screens/Job/JobDetail/JobDetail.jsx:371 -#: screens/Job/JobDetail/JobDetail.jsx:379 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:168 +#: components/JobList/JobListItem.js:137 +#: components/LaunchButton/ReLaunchDropDown.js:81 +#: screens/Job/JobDetail/JobDetail.js:384 +#: screens/Job/JobDetail/JobDetail.js:392 +#: screens/Job/JobOutput/shared/OutputToolbar.js:165 msgid "Relaunch" msgstr "" -#: components/JobList/JobListItem.jsx:111 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:148 +#: components/JobList/JobListItem.js:118 +#: screens/Job/JobOutput/shared/OutputToolbar.js:145 msgid "Relaunch Job" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:41 +#: components/LaunchButton/ReLaunchDropDown.js:41 msgid "Relaunch all hosts" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:54 +#: components/LaunchButton/ReLaunchDropDown.js:54 msgid "Relaunch failed hosts" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:30 -#: components/LaunchButton/ReLaunchDropDown.jsx:35 +#: components/LaunchButton/ReLaunchDropDown.js:30 +#: components/LaunchButton/ReLaunchDropDown.js:35 msgid "Relaunch on" msgstr "" -#: components/JobList/JobListItem.jsx:110 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:147 +#: components/JobList/JobListItem.js:117 +#: screens/Job/JobOutput/shared/OutputToolbar.js:144 msgid "Relaunch using host parameters" msgstr "" -#: components/Lookup/ProjectLookup.jsx:138 +#: components/Lookup/ProjectLookup.js:138 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: screens/Project/ProjectList/ProjectList.jsx:184 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 +#: screens/Project/ProjectList/ProjectList.js:189 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:100 msgid "Remote Archive" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +#: components/SelectedList/DraggableSelectedList.js:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:30 msgid "Remove" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js:36 msgid "Remove All Nodes" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:17 msgid "Remove Link" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js:18 msgid "Remove Node" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:70 msgid "Remove any local modifications prior to performing an update." msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:15 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:15 msgid "Remove {0} Access" msgstr "" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:46 +#: components/ResourceAccessList/ResourceAccessListItem.js:46 msgid "Remove {0} chip" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:48 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js:48 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "" -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:261 +#: components/SelectedList/DraggableSelectedList.js:83 +msgid "Reorder" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:257 msgid "Repeat Frequency" msgstr "" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 msgid "Replace" msgstr "" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:52 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:57 msgid "Replace field with new value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:68 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:75 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:68 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:75 msgid "Request subscription" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:106 -#: screens/Template/Survey/SurveyQuestionForm.jsx:183 +#: screens/Template/Survey/SurveyListItem.js:119 +#: screens/Template/Survey/SurveyQuestionForm.js:183 msgid "Required" msgstr "" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:12 -#: screens/Team/TeamRoles/TeamRolesList.jsx:181 +#: screens/Team/TeamRoles/TeamRoleListItem.js:12 +#: screens/Team/TeamRoles/TeamRolesList.js:181 msgid "Resource Name" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:194 msgid "Resource deleted" msgstr "" -#: screens/User/UserRoles/UserRolesListItem.jsx:21 -#~ msgid "Resource name" -#~ msgstr "" - -#: screens/User/UserRoles/UserRolesListItem.jsx:40 -#~ msgid "Resource role" -#~ msgstr "" - -#: screens/User/UserRoles/UserRolesListItem.jsx:30 -#~ msgid "Resource type" -#~ msgstr "" - -#: routeConfig.jsx:59 -#: screens/ActivityStream/ActivityStream.jsx:154 +#: routeConfig.js:59 +#: screens/ActivityStream/ActivityStream.js:150 msgid "Resources" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:140 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:58 +#: components/TemplateList/TemplateListItem.js:141 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:58 msgid "Resources are missing from this template." msgstr "" -#: screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.js:43 msgid "Restore initial value." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:248 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:245 msgid "" "Retrieve the enabled state from the given dict of host variables.\n" "The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "" -#: components/JobCancelButton/JobCancelButton.jsx:79 -#: components/JobCancelButton/JobCancelButton.jsx:83 -#: components/JobList/JobListCancelButton.jsx:159 -#: components/JobList/JobListCancelButton.jsx:162 -#: screens/Job/JobOutput/JobOutput.jsx:904 -#: screens/Job/JobOutput/JobOutput.jsx:907 +#: components/JobCancelButton/JobCancelButton.js:79 +#: components/JobCancelButton/JobCancelButton.js:83 +#: components/JobList/JobListCancelButton.js:159 +#: components/JobList/JobListCancelButton.js:162 +#: screens/Job/JobOutput/JobOutput.js:918 +#: screens/Job/JobOutput/JobOutput.js:921 msgid "Return" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:129 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:129 msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:130 +#: components/Search/AdvancedSearch.js:134 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: components/Search/AdvancedSearch.jsx:117 +#: components/Search/AdvancedSearch.js:121 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.js:127 msgid "Returns results that satisfy this one or any other filters." msgstr "" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:49 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Revert" msgstr "" -#: screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.js:23 msgid "Revert all" msgstr "" -#: screens/Setting/shared/RevertFormActionGroup.jsx:22 -#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.js:22 +#: screens/Setting/shared/RevertFormActionGroup.js:28 msgid "Revert all to default" msgstr "" -#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:51 +#: screens/Credential/shared/CredentialFormFields/CredentialField.js:56 msgid "Revert field to previously saved value" msgstr "" -#: screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Setting/shared/RevertAllAlert.js:11 msgid "Revert settings" msgstr "" -#: screens/Setting/shared/RevertButton.jsx:42 +#: screens/Setting/shared/RevertButton.js:42 msgid "Revert to factory default." msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:219 -#: screens/Project/ProjectList/ProjectList.jsx:208 -#: screens/Project/ProjectList/ProjectListItem.jsx:213 +#: screens/Job/JobDetail/JobDetail.js:228 +#: screens/Project/ProjectList/ProjectList.js:213 +#: screens/Project/ProjectList/ProjectListItem.js:210 msgid "Revision" msgstr "" -#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:36 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.js:36 msgid "Revision #" msgstr "" -#: components/NotificationList/NotificationList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +#: components/NotificationList/NotificationList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:159 msgid "Rocket.Chat" msgstr "" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:20 -#: screens/Team/TeamRoles/TeamRolesList.jsx:149 -#: screens/Team/TeamRoles/TeamRolesList.jsx:183 -#: screens/User/UserList/UserList.jsx:165 -#: screens/User/UserList/UserListItem.jsx:69 -#: screens/User/UserRoles/UserRolesList.jsx:147 -#: screens/User/UserRoles/UserRolesList.jsx:158 -#: screens/User/UserRoles/UserRolesListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.js:20 +#: screens/Team/TeamRoles/TeamRolesList.js:149 +#: screens/Team/TeamRoles/TeamRolesList.js:183 +#: screens/User/UserList/UserList.js:164 +#: screens/User/UserList/UserListItem.js:59 +#: screens/User/UserRoles/UserRolesList.js:147 +#: screens/User/UserRoles/UserRolesList.js:158 +#: screens/User/UserRoles/UserRolesListItem.js:26 msgid "Role" msgstr "" -#: components/ResourceAccessList/ResourceAccessList.jsx:146 -#: components/ResourceAccessList/ResourceAccessList.jsx:159 -#: components/ResourceAccessList/ResourceAccessList.jsx:186 -#: components/ResourceAccessList/ResourceAccessListItem.jsx:68 -#: screens/Team/Team.jsx:57 -#: screens/Team/Teams.jsx:31 -#: screens/User/User.jsx:70 -#: screens/User/Users.jsx:31 +#: components/ResourceAccessList/ResourceAccessList.js:146 +#: components/ResourceAccessList/ResourceAccessList.js:159 +#: components/ResourceAccessList/ResourceAccessList.js:186 +#: components/ResourceAccessList/ResourceAccessListItem.js:68 +#: screens/Team/Team.js:57 +#: screens/Team/Teams.js:31 +#: screens/User/User.js:70 +#: screens/User/Users.js:31 msgid "Roles" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 -#: components/Workflow/WorkflowLinkHelp.jsx:39 -#: screens/Credential/shared/ExternalTestModal.jsx:89 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: screens/Template/shared/JobTemplateForm.jsx:205 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:98 +#: components/Workflow/WorkflowLinkHelp.js:39 +#: screens/Credential/shared/ExternalTestModal.js:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:24 +#: screens/Template/shared/JobTemplateForm.js:205 msgid "Run" msgstr "" -#: components/AdHocCommands/AdHocCommands.jsx:131 -#: components/AdHocCommands/AdHocCommands.jsx:134 -#: components/AdHocCommands/AdHocCommands.jsx:140 -#: components/AdHocCommands/AdHocCommands.jsx:144 +#: components/AdHocCommands/AdHocCommands.js:131 +#: components/AdHocCommands/AdHocCommands.js:134 +#: components/AdHocCommands/AdHocCommands.js:140 +#: components/AdHocCommands/AdHocCommands.js:144 msgid "Run Command" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:146 +#: components/AdHocCommands/AdHocCommandsWizard.js:123 msgid "Run command" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:211 +#: components/Schedule/shared/FrequencyDetailSubform.js:211 msgid "Run every" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:137 +#: components/Schedule/shared/ScheduleForm.js:137 msgid "Run frequency" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:325 +#: components/Schedule/shared/FrequencyDetailSubform.js:325 msgid "Run on" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js:32 msgid "Run type" msgstr "" -#: components/JobList/JobList.jsx:202 -#: components/TemplateList/TemplateListItem.jsx:112 -#: components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.js:207 +#: components/TemplateList/TemplateListItem.js:113 +#: components/Workflow/WorkflowNodeHelp.js:83 msgid "Running" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:747 +#: screens/Job/JobOutput/JobOutput.js:761 msgid "Running Handlers" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:271 -#: screens/InstanceGroup/Instances/InstanceList.jsx:213 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:123 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:289 +#: screens/InstanceGroup/Instances/InstanceList.js:212 +#: screens/InstanceGroup/Instances/InstanceListItem.js:123 msgid "Running Jobs" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:73 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:73 msgid "Running jobs" msgstr "" -#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.js:105 msgid "SAML" msgstr "" -#: screens/Setting/SettingList.jsx:75 +#: screens/Setting/SettingList.js:76 msgid "SAML settings" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:140 +#: screens/Dashboard/DashboardGraph.js:140 msgid "SCM update" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:53 -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserDetail/UserDetail.js:54 +#: screens/User/UserList/UserListItem.js:49 msgid "SOCIAL" msgstr "" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:95 msgid "SSH password" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:186 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:186 msgid "SSL Connection" msgstr "" -#: components/Workflow/WorkflowStartNode.jsx:60 +#: components/Workflow/WorkflowStartNode.js:60 #: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "" -#: components/Sparkline/Sparkline.jsx:31 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: screens/Project/ProjectList/ProjectListItem.jsx:73 +#: components/Sparkline/Sparkline.js:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:39 +#: screens/Project/ProjectDetail/ProjectDetail.js:117 +#: screens/Project/ProjectList/ProjectListItem.js:70 msgid "STATUS:" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:303 +#: components/Schedule/shared/FrequencyDetailSubform.js:303 msgid "Sat" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:308 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:439 +#: components/Schedule/shared/FrequencyDetailSubform.js:308 +#: components/Schedule/shared/FrequencyDetailSubform.js:439 msgid "Saturday" msgstr "" -#: components/AddRole/AddResourceRole.jsx:266 -#: components/AssociateModal/AssociateModal.jsx:106 -#: components/AssociateModal/AssociateModal.jsx:112 -#: components/FormActionGroup/FormActionGroup.jsx:14 -#: components/FormActionGroup/FormActionGroup.jsx:20 -#: components/Schedule/shared/ScheduleForm.jsx:603 -#: components/Schedule/shared/ScheduleForm.jsx:609 +#: components/AddRole/AddResourceRole.js:266 +#: components/AssociateModal/AssociateModal.js:106 +#: components/AssociateModal/AssociateModal.js:112 +#: components/FormActionGroup/FormActionGroup.js:14 +#: components/FormActionGroup/FormActionGroup.js:20 +#: components/Schedule/shared/ScheduleForm.js:604 +#: components/Schedule/shared/ScheduleForm.js:610 #: components/Schedule/shared/useSchedulePromptSteps.js:45 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:117 -#: screens/Credential/shared/CredentialForm.jsx:322 -#: screens/Credential/shared/CredentialForm.jsx:327 -#: screens/Setting/shared/RevertFormActionGroup.jsx:13 -#: screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:158 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:117 +#: screens/Credential/shared/CredentialForm.js:319 +#: screens/Credential/shared/CredentialForm.js:324 +#: screens/Setting/shared/RevertFormActionGroup.js:13 +#: screens/Setting/shared/RevertFormActionGroup.js:19 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js:117 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:158 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:162 msgid "Save" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:36 msgid "Save & Exit" msgstr "" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:238 -#~ msgid "Save and enable log aggregation before testing the log aggregator." -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:32 msgid "Save link changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:254 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:254 msgid "Save successful!" msgstr "" -#: screens/Project/Projects.jsx:36 -#: screens/Template/Templates.jsx:53 +#: screens/Project/Projects.js:36 +#: screens/Template/Templates.js:53 msgid "Schedule Details" msgstr "" -#: screens/Inventory/Inventories.jsx:90 +#: screens/Inventory/Inventories.js:90 msgid "Schedule details" msgstr "" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is active" msgstr "" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:44 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:44 msgid "Schedule is inactive" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:523 +#: components/Schedule/shared/ScheduleForm.js:524 msgid "Schedule is missing rrule" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:226 -#: routeConfig.jsx:42 -#: screens/ActivityStream/ActivityStream.jsx:148 -#: screens/Inventory/Inventories.jsx:87 -#: screens/Inventory/InventorySource/InventorySource.jsx:93 -#: screens/ManagementJob/ManagementJob.jsx:107 -#: screens/ManagementJob/ManagementJobs.jsx:24 -#: screens/Project/Project.jsx:123 -#: screens/Project/Projects.jsx:33 -#: screens/Schedule/AllSchedules.jsx:25 -#: screens/Template/Template.jsx:148 -#: screens/Template/Templates.jsx:50 -#: screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/Schedule.js:77 +msgid "Schedule not found." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.js:225 +#: routeConfig.js:42 +#: screens/ActivityStream/ActivityStream.js:144 +#: screens/Inventory/Inventories.js:87 +#: screens/Inventory/InventorySource/InventorySource.js:89 +#: screens/ManagementJob/ManagementJob.js:107 +#: screens/ManagementJob/ManagementJobs.js:24 +#: screens/Project/Project.js:123 +#: screens/Project/Projects.js:33 +#: screens/Schedule/AllSchedules.js:25 +#: screens/Template/Template.js:148 +#: screens/Template/Templates.js:50 +#: screens/Template/WorkflowJobTemplate.js:134 msgid "Schedules" msgstr "" -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:141 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:31 -#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: screens/User/UserTokenList/UserTokenList.jsx:132 -#: screens/User/UserTokenList/UserTokenList.jsx:178 -#: screens/User/UserTokenList/UserTokenListItem.jsx:27 -#: screens/User/shared/UserTokenForm.jsx:69 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:140 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:31 +#: screens/User/UserTokenDetail/UserTokenDetail.js:49 +#: screens/User/UserTokenList/UserTokenList.js:132 +#: screens/User/UserTokenList/UserTokenList.js:177 +#: screens/User/UserTokenList/UserTokenListItem.js:27 +#: screens/User/shared/UserTokenForm.js:69 msgid "Scope" msgstr "" -#: screens/Job/JobOutput/PageControls.jsx:60 +#: screens/Job/JobOutput/PageControls.js:52 msgid "Scroll first" msgstr "" -#: screens/Job/JobOutput/PageControls.jsx:68 +#: screens/Job/JobOutput/PageControls.js:60 msgid "Scroll last" msgstr "" -#: screens/Job/JobOutput/PageControls.jsx:52 +#: screens/Job/JobOutput/PageControls.js:44 msgid "Scroll next" msgstr "" -#: screens/Job/JobOutput/PageControls.jsx:44 +#: screens/Job/JobOutput/PageControls.js:36 msgid "Scroll previous" msgstr "" -#: components/Lookup/HostFilterLookup.jsx:254 -#: components/Lookup/Lookup.jsx:128 +#: components/Lookup/HostFilterLookup.js:261 +#: components/Lookup/Lookup.js:130 msgid "Search" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:815 +#: screens/Job/JobOutput/JobOutput.js:829 msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:346 -#: components/Search/Search.jsx:289 +#: components/Search/AdvancedSearch.js:350 +#: components/Search/Search.js:289 msgid "Search submit button" msgstr "" -#: components/Search/Search.jsx:278 +#: components/Search/Search.js:278 msgid "Search text input" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +#: components/Schedule/shared/FrequencyDetailSubform.js:389 msgid "Second" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:121 -#: components/PromptDetail/PromptProjectDetail.jsx:115 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:219 +#: components/PromptDetail/PromptInventorySourceDetail.js:121 +#: components/PromptDetail/PromptProjectDetail.js:115 +#: screens/Project/ProjectDetail/ProjectDetail.js:215 msgid "Seconds" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:65 +#: components/LaunchPrompt/steps/PreviewStep.js:63 msgid "See errors on the left" msgstr "" -#: components/JobList/JobListItem.jsx:69 -#: components/Lookup/HostFilterLookup.jsx:342 -#: components/Lookup/Lookup.jsx:177 -#: components/Pagination/Pagination.jsx:33 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:97 +#: components/JobList/JobListItem.js:76 +#: components/Lookup/HostFilterLookup.js:349 +#: components/Lookup/Lookup.js:180 +#: components/Pagination/Pagination.js:33 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:97 msgid "Select" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:134 +#: screens/Credential/shared/CredentialForm.js:131 msgid "Select Credential Type" msgstr "" -#: screens/Host/HostGroups/HostGroupsList.jsx:243 -#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:247 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Host/HostGroups/HostGroupsList.js:242 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js:246 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js:243 msgid "Select Groups" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js:268 msgid "Select Hosts" msgstr "" -#: components/AnsibleSelect/AnsibleSelect.jsx:37 +#: components/AnsibleSelect/AnsibleSelect.js:37 msgid "Select Input" msgstr "" -#: screens/InstanceGroup/Instances/InstanceList.jsx:239 +#: screens/InstanceGroup/Instances/InstanceList.js:238 msgid "Select Instances" msgstr "" -#: components/AssociateModal/AssociateModal.jsx:21 +#: components/AssociateModal/AssociateModal.js:21 msgid "Select Items" msgstr "" -#: components/AddRole/AddResourceRole.jsx:220 +#: components/AddRole/AddResourceRole.js:220 msgid "Select Items from List" msgstr "" -#: screens/Template/shared/LabelSelect.jsx:100 +#: screens/Template/shared/LabelSelect.js:100 msgid "Select Labels" msgstr "" -#: components/AddRole/AddResourceRole.jsx:255 +#: components/AddRole/AddResourceRole.js:255 msgid "Select Roles to Apply" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:258 +#: screens/User/UserTeams/UserTeamList.js:257 msgid "Select Teams" msgstr "" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:25 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:25 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:81 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:78 msgid "Select a Node Type" msgstr "" -#: components/AddRole/AddResourceRole.jsx:189 +#: components/AddRole/AddResourceRole.js:189 msgid "Select a Resource Type" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:338 +#: screens/Template/shared/JobTemplateForm.js:338 msgid "" "Select a branch for the job template. This branch is applied to\n" "all job template nodes that prompt for a branch." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:47 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:47 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 +#: screens/Template/shared/WorkflowJobTemplateForm.js:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:144 +#: screens/Credential/shared/CredentialForm.js:141 msgid "Select a credential Type" msgstr "" -#: screens/Metrics/Metrics.jsx:191 +#: screens/Metrics/Metrics.js:191 msgid "Select a instance" msgstr "" -#: components/JobList/JobListCancelButton.jsx:98 +#: components/JobList/JobListCancelButton.js:98 msgid "Select a job to cancel" msgstr "" -#: screens/Metrics/Metrics.jsx:202 +#: screens/Metrics/Metrics.js:202 msgid "Select a metric" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.js:74 msgid "Select a module" msgstr "" -#: screens/Template/shared/PlaybookSelect.jsx:57 -#: screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.js:57 +#: screens/Template/shared/PlaybookSelect.js:58 msgid "Select a playbook" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:326 +#: screens/Template/shared/JobTemplateForm.js:326 msgid "Select a project before editing the execution environment." msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:18 msgid "Select a row to approve" msgstr "" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:160 -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:102 +#: components/PaginatedTable/ToolbarDeleteButton.js:160 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:102 msgid "Select a row to delete" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:18 msgid "Select a row to deny" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:59 +#: components/DisassociateButton/DisassociateButton.js:59 msgid "Select a row to disassociate" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:86 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:86 msgid "Select a subscription" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:84 -#~ msgid "Select a valid date and time for this field" -#~ msgstr "" - -#: components/HostForm/HostForm.jsx:40 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:56 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: components/Schedule/shared/ScheduleForm.jsx:85 -#: components/Schedule/shared/ScheduleForm.jsx:89 -#: screens/Credential/shared/CredentialForm.jsx:47 -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:83 -#: screens/Inventory/shared/InventoryForm.jsx:59 -#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:50 -#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:50 -#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.jsx:51 -#: 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:431 -#: screens/Project/shared/ProjectForm.jsx:193 -#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:39 -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:35 -#: screens/Team/shared/TeamForm.jsx:49 -#: screens/Template/Survey/SurveyQuestionForm.jsx:30 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:128 -#: screens/User/shared/UserForm.jsx:120 +#: components/HostForm/HostForm.js:40 +#: components/Schedule/shared/FrequencyDetailSubform.js:56 +#: components/Schedule/shared/FrequencyDetailSubform.js:82 +#: components/Schedule/shared/FrequencyDetailSubform.js:86 +#: components/Schedule/shared/FrequencyDetailSubform.js:94 +#: components/Schedule/shared/ScheduleForm.js:85 +#: components/Schedule/shared/ScheduleForm.js:89 +#: screens/Credential/shared/CredentialForm.js:44 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:83 +#: screens/Inventory/shared/InventoryForm.js:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:35 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:93 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js:51 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js:50 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js:50 +#: screens/Inventory/shared/SmartInventoryForm.js:69 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:24 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:431 +#: screens/Project/shared/ProjectForm.js:190 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.js:39 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:35 +#: screens/Team/shared/TeamForm.js:49 +#: screens/Template/Survey/SurveyQuestionForm.js:30 +#: screens/Template/shared/WorkflowJobTemplateForm.js:128 +#: screens/User/shared/UserForm.js:140 msgid "Select a value for this field" msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.js:132 msgid "Select a webhook service." msgstr "" -#: components/DataListToolbar/DataListToolbar.jsx:75 -#: screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.js:113 +#: screens/Template/Survey/SurveyToolbar.js:44 msgid "Select all" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:126 +#: screens/ActivityStream/ActivityStream.js:122 msgid "Select an activity type" msgstr "" -#: screens/Metrics/Metrics.jsx:233 +#: screens/Metrics/Metrics.js:233 msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:144 -msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." +#: screens/Template/shared/WorkflowJobTemplateForm.js:144 +msgid "Select an inventory for the workflow. This inventory is applied to all workflow nodes that prompt for an inventory." msgstr "" -#: components/LaunchPrompt/steps/SurveyStep.jsx:128 +#: components/LaunchPrompt/steps/SurveyStep.js:128 msgid "Select an option" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:204 +#: screens/Project/shared/ProjectForm.js:201 msgid "Select an organization before editing the default execution environment." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:380 +#: screens/Template/shared/JobTemplateForm.js:380 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" @@ -7113,363 +6849,331 @@ msgid "" "credential(s) become the defaults that can be updated at run time." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:355 -#~ msgid "" -#~ "Select credentials that allow Tower to access the nodes this job will be ran\n" -#~ "against. You can only select one credential of each type. For machine credentials (SSH),\n" -#~ "checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" -#~ "credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" -#~ "credential(s) become the defaults that can be updated at run time." -#~ msgstr "" - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:83 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:83 msgid "" "Select from the list of directories found in\n" "the Project Base Path. Together the base path and the playbook\n" "directory provide the full path used to locate playbooks." msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:85 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:85 msgid "Select items from list" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:122 -#: screens/Dashboard/DashboardGraph.jsx:123 +#: screens/Dashboard/DashboardGraph.js:122 +#: screens/Dashboard/DashboardGraph.js:123 msgid "Select job type" msgstr "" -#: components/LaunchPrompt/steps/SurveyStep.jsx:174 +#: components/LaunchPrompt/steps/SurveyStep.js:174 msgid "Select option(s)" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:95 -#: screens/Dashboard/DashboardGraph.jsx:96 -#: screens/Dashboard/DashboardGraph.jsx:97 +#: screens/Dashboard/DashboardGraph.js:95 +#: screens/Dashboard/DashboardGraph.js:96 +#: screens/Dashboard/DashboardGraph.js:97 msgid "Select period" msgstr "" -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:104 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:104 msgid "Select roles to apply" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:132 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:130 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:132 msgid "Select source path" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:148 -#: screens/Dashboard/DashboardGraph.jsx:149 +#: screens/Dashboard/DashboardGraph.js:148 +#: screens/Dashboard/DashboardGraph.js:149 msgid "Select status" msgstr "" -#: components/MultiSelect/TagMultiSelect.jsx:60 +#: components/MultiSelect/TagMultiSelect.js:60 msgid "Select tags" msgstr "" -#: components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx:95 +#: components/AdHocCommands/AdHocExecutionEnvironmentStep.js:95 msgid "Select the Execution Environment you want this command to run inside." msgstr "" -#: screens/Inventory/shared/SmartInventoryForm.jsx:92 +#: screens/Inventory/shared/SmartInventoryForm.js:89 msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:517 +#: screens/Template/shared/JobTemplateForm.js:517 msgid "" "Select the Instance Groups for this Organization\n" "to run on." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:84 +#: screens/Organization/shared/OrganizationForm.js:83 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:49 +#: screens/User/shared/UserTokenForm.js:49 msgid "Select the application that this token will belong to." msgstr "" -#: components/AdHocCommands/AdHocCredentialStep.jsx:76 +#: components/AdHocCommands/AdHocCredentialStep.js:98 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:217 -#~ msgid "Select the default execution environment for this organization to run on." -#~ msgstr "" - -#: screens/Organization/shared/OrganizationForm.jsx:96 -#~ msgid "Select the default execution environment for this organization." -#~ msgstr "" - -#: screens/Project/shared/ProjectForm.jsx:196 -#~ msgid "Select the default execution environment for this project." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:325 +#: screens/Template/shared/JobTemplateForm.js:325 msgid "Select the execution environment for this job template." msgstr "" -#: components/Lookup/InventoryLookup.jsx:110 -#: screens/Template/shared/JobTemplateForm.jsx:289 +#: components/Lookup/InventoryLookup.js:123 +#: screens/Template/shared/JobTemplateForm.js:289 msgid "" "Select the inventory containing the hosts\n" "you want this job to manage." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js: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:33 -#: components/HostForm/HostForm.jsx:50 +#: components/HostForm/HostForm.js:33 +#: components/HostForm/HostForm.js:51 msgid "Select the inventory that this host will belong to." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:361 +#: screens/Template/shared/JobTemplateForm.js:361 msgid "Select the playbook to be executed by this job." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.js:304 msgid "" "Select the project containing the playbook\n" "you want this job to execute." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:80 msgid "Select your Ansible Automation Platform subscription to use." msgstr "" -#: components/Lookup/Lookup.jsx:165 +#: components/Lookup/Lookup.js:167 msgid "Select {0}" msgstr "" -#: components/AddRole/AddResourceRole.jsx:231 -#: components/AddRole/AddResourceRole.jsx:243 -#: components/AddRole/AddResourceRole.jsx:261 -#: components/AddRole/SelectRoleStep.jsx:27 -#: components/CheckboxListItem/CheckboxListItem.jsx:42 -#: components/OptionsList/OptionsList.jsx:49 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 -#: components/TemplateList/TemplateListItem.jsx:131 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 -#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:112 -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:26 -#: screens/Application/ApplicationsList/ApplicationListItem.jsx:29 -#: screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:29 -#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 -#: screens/Host/HostGroups/HostGroupItem.jsx:26 -#: screens/Host/HostList/HostListItem.jsx:26 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:115 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:77 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 -#: screens/Project/ProjectList/ProjectListItem.jsx:177 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:245 -#: screens/Team/TeamList/TeamListItem.jsx:31 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:57 +#: components/AddRole/AddResourceRole.js:231 +#: components/AddRole/AddResourceRole.js:243 +#: components/AddRole/AddResourceRole.js:261 +#: components/AddRole/SelectRoleStep.js:27 +#: components/CheckboxListItem/CheckboxListItem.js:42 +#: components/Lookup/InstanceGroupsLookup.js:88 +#: components/OptionsList/OptionsList.js:60 +#: components/Schedule/ScheduleList/ScheduleListItem.js:75 +#: components/TemplateList/TemplateListItem.js:132 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js:112 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.js:26 +#: screens/Application/ApplicationsList/ApplicationListItem.js:29 +#: screens/Credential/CredentialList/CredentialListItem.js:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js:29 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js:55 +#: screens/Host/HostGroups/HostGroupItem.js:26 +#: screens/Host/HostList/HostListItem.js:41 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:61 +#: screens/InstanceGroup/Instances/InstanceListItem.js:115 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:38 +#: screens/Inventory/InventoryList/InventoryListItem.js:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js:33 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:104 +#: screens/Organization/OrganizationList/OrganizationListItem.js:42 +#: screens/Organization/shared/OrganizationForm.js:113 +#: screens/Project/ProjectList/ProjectListItem.js:174 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:245 +#: screens/Team/TeamList/TeamListItem.js:31 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:57 msgid "Selected" msgstr "" -#: components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: components/LaunchPrompt/steps/CredentialsStep.jsx:150 -#: components/Lookup/MultiCredentialsLookup.jsx:162 -#: components/Lookup/MultiCredentialsLookup.jsx:167 +#: components/LaunchPrompt/steps/CredentialsStep.js:145 +#: components/LaunchPrompt/steps/CredentialsStep.js:150 +#: components/Lookup/MultiCredentialsLookup.js:162 +#: components/Lookup/MultiCredentialsLookup.js:167 msgid "Selected Category" msgstr "" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 -#~ msgid "Send a test log message to the configured log aggregator." -#~ msgstr "" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:115 msgid "Sender Email" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:94 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:94 msgid "Sender e-mail" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:148 +#: components/Schedule/shared/FrequencyDetailSubform.js:148 msgid "September" msgstr "" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:24 msgid "Service account JSON file" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:54 -#: screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.js:51 +#: screens/Project/shared/ProjectForm.js:93 msgid "Set a value for this field" msgstr "" -#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:70 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js:70 msgid "Set how many days of data should be retained." msgstr "" -#: screens/Setting/SettingList.jsx:116 +#: screens/Setting/SettingList.js:117 msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:133 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js:133 msgid "Set source path to" msgstr "" -#: components/InstanceToggle/InstanceToggle.jsx:43 +#: components/InstanceToggle/InstanceToggle.js:43 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:129 +#: screens/Application/shared/ApplicationForm.js:129 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.js:112 msgid "Set type" msgstr "" -#: components/Search/AdvancedSearch.jsx:294 +#: components/Search/AdvancedSearch.js:298 msgid "Set type disabled for related search field fuzzy searches" msgstr "" -#: components/Search/AdvancedSearch.jsx:99 +#: components/Search/AdvancedSearch.js:103 msgid "Set type select" msgstr "" -#: components/Search/AdvancedSearch.jsx:102 +#: components/Search/AdvancedSearch.js:106 msgid "Set type typeahead" msgstr "" -#: components/Workflow/WorkflowTools.jsx:154 +#: components/Workflow/WorkflowTools.js:154 msgid "Set zoom to 100% and center graph" msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +#: screens/ActivityStream/ActivityStreamDetailButton.js:46 msgid "Setting category" msgstr "" -#: screens/Setting/shared/RevertButton.jsx:46 +#: screens/Setting/shared/RevertButton.js:46 msgid "Setting matches factory default." msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.js:49 msgid "Setting name" msgstr "" -#: routeConfig.jsx:147 -#: routeConfig.jsx:151 -#: screens/ActivityStream/ActivityStream.jsx:211 -#: screens/ActivityStream/ActivityStream.jsx:213 -#: screens/Setting/Settings.jsx:42 +#: routeConfig.js:147 +#: routeConfig.js:151 +#: screens/ActivityStream/ActivityStream.js:207 +#: screens/ActivityStream/ActivityStream.js:209 +#: screens/Setting/Settings.js:42 msgid "Settings" msgstr "" -#: components/FormField/PasswordInput.jsx:27 +#: components/FormField/PasswordInput.js:35 msgid "Show" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 -#: components/PromptDetail/PromptDetail.jsx:243 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:158 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:234 -#: screens/Template/shared/JobTemplateForm.jsx:499 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:173 +#: components/PromptDetail/PromptDetail.js:243 +#: components/PromptDetail/PromptJobTemplateDetail.js:158 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:310 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:234 +#: screens/Template/shared/JobTemplateForm.js:499 msgid "Show Changes" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:129 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:129 msgid "Show all groups" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:196 -#: components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.js:196 +#: components/AdHocCommands/AdHocDetailsStep.js:197 msgid "Show changes" msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:105 -#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +#: components/LaunchPrompt/LaunchPrompt.js:105 +#: components/Schedule/shared/SchedulePromptableFields.js:113 msgid "Show description" msgstr "" -#: components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.js:12 msgid "Show less" msgstr "" -#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:128 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:128 msgid "Show only root groups" msgstr "" -#: screens/Login/Login.jsx:232 +#: screens/Login/Login.js:232 msgid "Sign in with Azure AD" msgstr "" -#: screens/Login/Login.jsx:246 +#: screens/Login/Login.js:246 msgid "Sign in with GitHub" msgstr "" -#: screens/Login/Login.jsx:288 +#: screens/Login/Login.js:288 msgid "Sign in with GitHub Enterprise" msgstr "" -#: screens/Login/Login.jsx:303 +#: screens/Login/Login.js:303 msgid "Sign in with GitHub Enterprise Organizations" msgstr "" -#: screens/Login/Login.jsx:319 +#: screens/Login/Login.js:319 msgid "Sign in with GitHub Enterprise Teams" msgstr "" -#: screens/Login/Login.jsx:260 +#: screens/Login/Login.js:260 msgid "Sign in with GitHub Organizations" msgstr "" -#: screens/Login/Login.jsx:274 +#: screens/Login/Login.js:274 msgid "Sign in with GitHub Teams" msgstr "" -#: screens/Login/Login.jsx:334 +#: screens/Login/Login.js:334 msgid "Sign in with Google" msgstr "" -#: screens/Login/Login.jsx:353 +#: screens/Login/Login.js:353 msgid "Sign in with SAML" msgstr "" -#: screens/Login/Login.jsx:352 +#: screens/Login/Login.js:352 msgid "Sign in with SAML {samlIDP}" msgstr "" -#: components/Search/Search.jsx:178 -#: components/Search/Search.jsx:179 +#: components/Search/Search.js:178 +#: components/Search/Search.js:179 msgid "Simple key select" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:68 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:69 -#: components/PromptDetail/PromptDetail.jsx:221 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:257 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:352 -#: screens/Job/JobDetail/JobDetail.jsx:312 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:352 -#: screens/Template/shared/JobTemplateForm.jsx:539 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:68 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:69 +#: components/PromptDetail/PromptDetail.js:221 +#: components/PromptDetail/PromptJobTemplateDetail.js:257 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:348 +#: screens/Job/JobDetail/JobDetail.js:325 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:352 +#: screens/Template/shared/JobTemplateForm.js:539 msgid "Skip Tags" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:518 -#~ msgid "" -#~ "Skip tags are useful when you have a\n" -#~ "large playbook, and you want to skip specific parts of a\n" -#~ "play or task. Use commas to separate multiple tags. Refer\n" -#~ "to Ansible Tower documentation for details on the usage\n" -#~ "of tags." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:542 +#: screens/Template/shared/JobTemplateForm.js:542 msgid "" "Skip tags are useful when you have a\n" "large playbook, and you want to skip specific parts of a\n" @@ -7478,7 +7182,7 @@ msgid "" "of tags." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:70 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:70 msgid "" "Skip tags are useful when you have a large\n" "playbook, and you want to skip specific parts of a play or task.\n" @@ -7486,280 +7190,271 @@ msgid "" "documentation for details on the usage of tags." msgstr "" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.js:39 msgid "Skipped" msgstr "" -#: components/NotificationList/NotificationList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:160 +#: components/NotificationList/NotificationList.js:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:160 msgid "Slack" msgstr "" -#: screens/Host/HostList/SmartInventoryButton.jsx:30 -#: screens/Host/HostList/SmartInventoryButton.jsx:39 -#: screens/Host/HostList/SmartInventoryButton.jsx:43 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:94 +#: screens/Host/HostList/SmartInventoryButton.js:30 +#: screens/Host/HostList/SmartInventoryButton.js:39 +#: screens/Host/HostList/SmartInventoryButton.js:43 +#: screens/Inventory/InventoryList/InventoryList.js:176 +#: screens/Inventory/InventoryList/InventoryListItem.js:94 msgid "Smart Inventory" msgstr "" -#: screens/Inventory/SmartInventory.jsx:92 +#: screens/Inventory/SmartInventory.js:92 msgid "Smart Inventory not found." msgstr "" -#: components/Lookup/HostFilterLookup.jsx:307 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:116 +#: components/Lookup/HostFilterLookup.js:314 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:112 msgid "Smart host filter" msgstr "" -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 msgid "Smart inventory" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:62 +#: components/LaunchPrompt/steps/PreviewStep.js:60 msgid "Some of the previous step(s) have errors" msgstr "" -#: screens/Host/HostList/SmartInventoryButton.jsx:12 +#: screens/Host/HostList/SmartInventoryButton.js:12 msgid "Some search modifiers like not__ and __search are not supported in Smart Inventory host filters. Remove these to create a new Smart Inventory with this filter." msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:41 msgid "Something went wrong with the request to test this credential and metadata." msgstr "" -#: components/ContentError/ContentError.jsx:36 +#: components/ContentError/ContentError.js:36 msgid "Something went wrong..." msgstr "" -#: components/Sort/Sort.jsx:129 +#: components/Sort/Sort.js:129 msgid "Sort" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:63 -#: screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.js:72 +#: screens/Template/Survey/SurveyListItem.js:73 msgid "Sort question order" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: screens/Inventory/shared/InventorySourceForm.jsx:139 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: components/PromptDetail/PromptInventorySourceDetail.js:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:152 +#: screens/Inventory/shared/InventorySourceForm.js:136 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:94 msgid "Source" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: components/PromptDetail/PromptDetail.jsx:181 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 -#: components/PromptDetail/PromptProjectDetail.jsx:98 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:87 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:309 -#: screens/Job/JobDetail/JobDetail.jsx:215 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:203 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:228 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 -#: screens/Template/shared/JobTemplateForm.jsx:335 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:46 +#: components/PromptDetail/PromptDetail.js:181 +#: components/PromptDetail/PromptJobTemplateDetail.js:152 +#: components/PromptDetail/PromptProjectDetail.js:98 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:87 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:305 +#: screens/Job/JobDetail/JobDetail.js:224 +#: screens/Project/ProjectDetail/ProjectDetail.js:199 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:228 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:134 +#: screens/Template/shared/JobTemplateForm.js:335 msgid "Source Control Branch" msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:47 msgid "Source Control Branch/Tag/Commit" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:102 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:207 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:58 +#: components/PromptDetail/PromptProjectDetail.js:102 +#: screens/Project/ProjectDetail/ProjectDetail.js:203 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:55 msgid "Source Control Credential" msgstr "" -#: screens/Project/shared/ProjectForm.jsx:218 +#: screens/Project/shared/ProjectForm.js:215 msgid "Source Control Credential Type" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:99 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:204 -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:50 +#: components/PromptDetail/PromptProjectDetail.js:99 +#: screens/Project/ProjectDetail/ProjectDetail.js:200 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:50 msgid "Source Control Refspec" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:178 +#: screens/Project/ProjectDetail/ProjectDetail.js:174 msgid "Source Control Revision" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:94 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:174 +#: components/PromptDetail/PromptProjectDetail.js:94 +#: screens/Project/ProjectDetail/ProjectDetail.js:170 msgid "Source Control Type" msgstr "" -#: components/Lookup/ProjectLookup.jsx:143 -#: components/PromptDetail/PromptProjectDetail.jsx:97 +#: components/Lookup/ProjectLookup.js:143 +#: components/PromptDetail/PromptProjectDetail.js:97 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:202 -#: screens/Project/ProjectList/ProjectList.jsx:189 -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.js:198 +#: screens/Project/ProjectList/ProjectList.js:194 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:105 msgid "Source Control URL" msgstr "" -#: components/JobList/JobList.jsx:183 -#: components/JobList/JobListItem.jsx:34 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.js:188 +#: components/JobList/JobListItem.js:35 +#: components/Schedule/ScheduleList/ScheduleListItem.js:38 +#: screens/Job/JobDetail/JobDetail.js:76 msgid "Source Control Update" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:285 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:285 msgid "Source Phone Number" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:188 +#: components/PromptDetail/PromptInventorySourceDetail.js:188 msgid "Source Variables" msgstr "" -#: components/JobList/JobListItem.jsx:171 -#: screens/Job/JobDetail/JobDetail.jsx:148 +#: components/JobList/JobListItem.js:178 +#: screens/Job/JobDetail/JobDetail.js:165 msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:178 +#: screens/Template/shared/WorkflowJobTemplateForm.js:178 msgid "Source control branch" msgstr "" -#: screens/Inventory/shared/InventorySourceForm.jsx:161 +#: screens/Inventory/shared/InventorySourceForm.js:158 msgid "Source details" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:398 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:398 msgid "Source phone number" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:205 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:31 msgid "Source variables" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:98 msgid "Sourced from a project" msgstr "" -#: screens/Inventory/Inventories.jsx:82 -#: screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.js:82 +#: screens/Inventory/Inventory.js:66 msgid "Sources" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:465 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:465 msgid "" "Specify HTTP Headers in JSON format. Refer to\n" "the Ansible Tower documentation for example syntax." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -#~ msgid "" -#~ "Specify HTTP Headers in JSON format. Refer to\n" -#~ "the documentation for example syntax." -#~ msgstr "" - -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:379 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:379 msgid "" "Specify a notification color. Acceptable colors are hex\n" "color code (example: #3af or #789abc)." msgstr "" -#: screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.js:71 msgid "Specify a scope for the token's access" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js:27 msgid "Specify the conditions under which this node should be executed" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:178 +#: screens/Job/JobOutput/HostEventModal.js:178 msgid "Standard Error" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:160 +#: screens/Job/JobOutput/HostEventModal.js:160 msgid "Standard Out" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:179 +#: screens/Job/JobOutput/HostEventModal.js:179 msgid "Standard error tab" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:161 +#: screens/Job/JobOutput/HostEventModal.js:161 msgid "Standard out tab" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:52 -#: components/NotificationList/NotificationListItem.jsx:53 -#: components/Schedule/shared/ScheduleForm.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:47 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:53 +#: components/NotificationList/NotificationListItem.js:52 +#: components/NotificationList/NotificationListItem.js:53 +#: components/Schedule/shared/ScheduleForm.js:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:47 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:53 msgid "Start" msgstr "" -#: components/JobList/JobList.jsx:219 -#: components/JobList/JobListItem.jsx:84 +#: components/JobList/JobList.js:224 +#: components/JobList/JobListItem.js:91 msgid "Start Time" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:120 -#~ msgid "Start date/time" -#~ msgstr "" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:399 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:399 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:105 msgid "Start message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:408 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:408 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:114 msgid "Start message body" msgstr "" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:35 +#: screens/Inventory/shared/InventorySourceSyncButton.js:35 msgid "Start sync process" msgstr "" -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:39 +#: screens/Inventory/shared/InventorySourceSyncButton.js:39 msgid "Start sync source" msgstr "" -#: screens/Job/JobDetail/JobDetail.jsx:122 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:231 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:76 +#: screens/Job/JobDetail/JobDetail.js:139 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:230 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:76 msgid "Started" msgstr "" -#: components/JobList/JobList.jsx:196 -#: components/JobList/JobList.jsx:217 -#: components/JobList/JobListItem.jsx:80 -#: screens/Inventory/InventoryList/InventoryList.jsx:196 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:88 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:218 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:80 -#: screens/Job/JobDetail/JobDetail.jsx:112 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:199 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:111 -#: screens/Project/ProjectList/ProjectList.jsx:206 -#: screens/Project/ProjectList/ProjectListItem.jsx:197 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:232 -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: components/JobList/JobList.js:201 +#: components/JobList/JobList.js:222 +#: components/JobList/JobListItem.js:87 +#: screens/Inventory/InventoryList/InventoryList.js:208 +#: screens/Inventory/InventoryList/InventoryListItem.js:88 +#: screens/Inventory/InventorySources/InventorySourceList.js:217 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:80 +#: screens/Job/JobDetail/JobDetail.js:129 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:111 +#: screens/Project/ProjectList/ProjectList.js:211 +#: screens/Project/ProjectList/ProjectListItem.js:194 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:49 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:104 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:231 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js:79 msgid "Status" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:723 +#: screens/Job/JobOutput/JobOutput.js:737 msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:49 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:37 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:49 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:212 msgid "Submit" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:88 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:85 msgid "" "Submodules will track the latest commit on\n" "their master branch (or other branch specified in\n" @@ -7769,201 +7464,192 @@ msgid "" "flag to git submodule update." msgstr "" -#: screens/Setting/SettingList.jsx:126 -#: screens/Setting/Settings.jsx:108 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:82 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:195 +#: screens/Setting/SettingList.js:127 +#: screens/Setting/Settings.js:108 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:78 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:195 msgid "Subscription" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:40 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:36 msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:194 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:194 msgid "Subscription Management" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:83 msgid "Subscription manifest" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:83 msgid "Subscription selection modal" msgstr "" -#: screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.js:132 msgid "Subscription settings" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:77 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:73 msgid "Subscription type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:143 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:143 msgid "Subscriptions table" msgstr "" -#: components/Lookup/ProjectLookup.jsx:137 +#: components/Lookup/ProjectLookup.js:137 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: screens/Project/ProjectList/ProjectList.jsx:183 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 +#: screens/Project/ProjectList/ProjectList.js:188 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:99 msgid "Subversion" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:65 -#: components/NotificationList/NotificationListItem.jsx:66 +#: components/NotificationList/NotificationListItem.js:65 +#: components/NotificationList/NotificationListItem.js:66 msgid "Success" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:417 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:417 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:123 msgid "Success message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:426 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:426 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:132 msgid "Success message body" msgstr "" -#: components/JobList/JobList.jsx:203 -#: components/Workflow/WorkflowNodeHelp.jsx:86 -#: screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.js:208 +#: components/Workflow/WorkflowNodeHelp.js:86 +#: screens/Dashboard/shared/ChartTooltip.js:59 msgid "Successful" msgstr "" -#: screens/Dashboard/DashboardGraph.jsx:163 +#: screens/Dashboard/DashboardGraph.js:163 msgid "Successful jobs" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:184 -#: screens/Project/ProjectList/ProjectListItem.jsx:98 +#: screens/Project/ProjectDetail/ProjectDetail.js:180 +#: screens/Project/ProjectList/ProjectListItem.js:95 msgid "Successfully copied to clipboard!" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +#: components/Schedule/shared/FrequencyDetailSubform.js:243 msgid "Sun" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:248 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:409 +#: components/Schedule/shared/FrequencyDetailSubform.js:248 +#: components/Schedule/shared/FrequencyDetailSubform.js:409 msgid "Sunday" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:26 -#: screens/Template/Template.jsx:159 -#: screens/Template/Templates.jsx:47 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.js:26 +#: screens/Template/Template.js:159 +#: screens/Template/Templates.js:47 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "Survey" msgstr "" -#: screens/Template/Survey/SurveyList.jsx:137 +#: screens/Template/Survey/SurveyList.js:137 msgid "Survey List" msgstr "" -#: screens/Template/Survey/SurveyPreviewModal.jsx:31 +#: screens/Template/Survey/SurveyPreviewModal.js:31 msgid "Survey Preview" msgstr "" -#: screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.js:50 msgid "Survey Toggle" msgstr "" -#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.js:32 msgid "Survey preview modal" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.js:66 msgid "Survey questions" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:113 -#: screens/Inventory/shared/InventorySourceSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:43 -#: screens/Project/shared/ProjectSyncButton.jsx:55 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:113 +#: screens/Inventory/shared/InventorySourceSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:43 +#: screens/Project/shared/ProjectSyncButton.js:55 msgid "Sync" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:230 -#: screens/Project/shared/ProjectSyncButton.jsx:39 -#: screens/Project/shared/ProjectSyncButton.jsx:50 +#: screens/Project/ProjectList/ProjectListItem.js:227 +#: screens/Project/shared/ProjectSyncButton.js:39 +#: screens/Project/shared/ProjectSyncButton.js:50 msgid "Sync Project" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:204 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:207 +#: screens/Inventory/InventorySources/InventorySourceList.js:203 +#: screens/Inventory/InventorySources/InventorySourceList.js:206 msgid "Sync all" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:198 +#: screens/Inventory/InventorySources/InventorySourceList.js:197 msgid "Sync all sources" msgstr "" -#: screens/Inventory/InventorySources/InventorySourceList.jsx:242 +#: screens/Inventory/InventorySources/InventorySourceList.js:241 msgid "Sync error" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:196 -#: screens/Project/ProjectList/ProjectListItem.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.js:192 +#: screens/Project/ProjectList/ProjectListItem.js:107 msgid "Sync for revision" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:123 +#: screens/Project/ProjectList/ProjectListItem.js:120 msgid "Syncing" msgstr "" -#: screens/Setting/SettingList.jsx:96 -#: screens/User/UserRoles/UserRolesListItem.jsx:18 +#: screens/Setting/SettingList.js:97 +#: screens/User/UserRoles/UserRolesListItem.js:18 msgid "System" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:129 -#: screens/User/UserDetail/UserDetail.jsx:42 -#: screens/User/UserList/UserListItem.jsx:19 -#: screens/User/UserRoles/UserRolesList.jsx:128 -#: screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.js:129 +#: screens/User/UserDetail/UserDetail.js:43 +#: screens/User/UserList/UserListItem.js:19 +#: screens/User/UserRoles/UserRolesList.js:128 +#: screens/User/shared/UserForm.js:41 msgid "System Administrator" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:44 -#: screens/User/UserList/UserListItem.jsx:21 -#: screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.js:45 +#: screens/User/UserList/UserListItem.js:21 +#: screens/User/shared/UserForm.js:35 msgid "System Auditor" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:760 +#: screens/Job/JobOutput/JobOutput.js:774 msgid "System Warning" msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:132 -#: screens/User/UserRoles/UserRolesList.jsx:131 +#: screens/Team/TeamRoles/TeamRolesList.js:132 +#: screens/User/UserRoles/UserRolesList.js:131 msgid "System administrators have unrestricted access to all resources." msgstr "" -#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.js:111 msgid "TACACS+" msgstr "" -#: screens/Setting/SettingList.jsx:79 +#: screens/Setting/SettingList.js:80 msgid "TACACS+ settings" msgstr "" -#: screens/Dashboard/Dashboard.jsx:117 -#: screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.js:117 +#: screens/Job/JobOutput/HostEventModal.js:106 msgid "Tabs" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:502 -#~ msgid "" -#~ "Tags are useful when you have a large\n" -#~ "playbook, and you want to run a specific part of a\n" -#~ "play or task. Use commas to separate multiple tags.\n" -#~ "Refer to Ansible Tower documentation for details on\n" -#~ "the usage of tags." -#~ msgstr "" - -#: screens/Template/shared/JobTemplateForm.jsx:526 +#: screens/Template/shared/JobTemplateForm.js:526 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a\n" @@ -7972,7 +7658,7 @@ msgid "" "the usage of tags." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:58 msgid "" "Tags are useful when you have a large\n" "playbook, and you want to run a specific part of a play or task.\n" @@ -7980,204 +7666,196 @@ msgid "" "documentation for details on the usage of tags." msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:152 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:152 msgid "Tags for the Annotation" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:176 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:176 msgid "Tags for the annotation (optional)" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:245 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:309 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:249 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:326 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:448 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:195 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:245 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:309 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:249 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:326 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:448 msgid "Target URL" msgstr "" -#: screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.js:129 msgid "Task" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:91 +#: screens/Job/JobOutput/shared/OutputToolbar.js:88 msgid "Task Count" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:751 +#: screens/Job/JobOutput/JobOutput.js:765 msgid "Task Started" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:92 +#: screens/Job/JobOutput/shared/OutputToolbar.js:89 msgid "Tasks" msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "Team" msgstr "" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:82 -#: screens/Team/TeamRoles/TeamRolesList.jsx:145 +#: components/ResourceAccessList/ResourceAccessListItem.js:82 +#: screens/Team/TeamRoles/TeamRolesList.js:145 msgid "Team Roles" msgstr "" -#: screens/Team/Team.jsx:73 +#: screens/Team/Team.js:73 msgid "Team not found." msgstr "" -#: components/AddRole/AddResourceRole.jsx:207 -#: components/AddRole/AddResourceRole.jsx:208 -#: routeConfig.jsx:104 -#: screens/ActivityStream/ActivityStream.jsx:182 -#: screens/Organization/Organization.jsx:125 -#: screens/Organization/OrganizationList/OrganizationList.jsx:152 -#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 -#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:65 -#: screens/Organization/Organizations.jsx:32 -#: screens/Team/TeamList/TeamList.jsx:117 -#: screens/Team/TeamList/TeamList.jsx:172 -#: screens/Team/Teams.jsx:14 -#: screens/Team/Teams.jsx:24 -#: screens/User/User.jsx:69 -#: screens/User/UserTeams/UserTeamList.jsx:181 -#: screens/User/UserTeams/UserTeamList.jsx:253 -#: screens/User/Users.jsx:32 +#: components/AddRole/AddResourceRole.js:207 +#: components/AddRole/AddResourceRole.js:208 +#: routeConfig.js:104 +#: screens/ActivityStream/ActivityStream.js:178 +#: screens/Organization/Organization.js:125 +#: screens/Organization/OrganizationList/OrganizationList.js:152 +#: screens/Organization/OrganizationList/OrganizationListItem.js:65 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.js:65 +#: screens/Organization/Organizations.js:32 +#: screens/Team/TeamList/TeamList.js:117 +#: screens/Team/TeamList/TeamList.js:171 +#: screens/Team/Teams.js:14 +#: screens/Team/Teams.js:24 +#: screens/User/User.js:69 +#: screens/User/UserTeams/UserTeamList.js:181 +#: screens/User/UserTeams/UserTeamList.js:252 +#: screens/User/Users.js:32 #: util/getRelatedResourceDeleteDetails.js:173 msgid "Teams" msgstr "" -#: screens/Template/Template.jsx:175 -#: screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.js:175 +#: screens/Template/WorkflowJobTemplate.js:179 msgid "Template not found." msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:27 -#~ msgid "Template type" -#~ msgstr "" - -#: components/TemplateList/TemplateList.jsx:185 -#: components/TemplateList/TemplateList.jsx:242 -#: routeConfig.jsx:63 -#: screens/ActivityStream/ActivityStream.jsx:159 -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:85 -#: screens/Template/Templates.jsx:16 +#: components/TemplateList/TemplateList.js:190 +#: components/TemplateList/TemplateList.js:248 +#: routeConfig.js:63 +#: screens/ActivityStream/ActivityStream.js:155 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:85 +#: screens/Template/Templates.js:16 #: util/getRelatedResourceDeleteDetails.js:217 #: util/getRelatedResourceDeleteDetails.js:274 msgid "Templates" msgstr "" -#: screens/Credential/shared/CredentialForm.jsx:335 -#: screens/Credential/shared/CredentialForm.jsx:341 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:80 +#: screens/Credential/shared/CredentialForm.js:332 +#: screens/Credential/shared/CredentialForm.js:338 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js:80 msgid "Test" msgstr "" -#: screens/Credential/shared/ExternalTestModal.jsx:77 +#: screens/Credential/shared/ExternalTestModal.js:77 msgid "Test External Credential" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:122 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:122 msgid "Test Notification" msgstr "" -#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:244 -#~ msgid "Test logging" -#~ msgstr "" - -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:119 msgid "Test notification" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:46 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js:46 msgid "Test passed" msgstr "" -#: screens/Template/Survey/SurveyPreviewModal.jsx:52 -#: screens/Template/Survey/SurveyQuestionForm.jsx:81 +#: screens/Template/Survey/SurveyPreviewModal.js:52 +#: screens/Template/Survey/SurveyQuestionForm.js:81 msgid "Text" msgstr "" -#: screens/Template/Survey/SurveyPreviewModal.jsx:66 +#: screens/Template/Survey/SurveyPreviewModal.js:66 msgid "Text Area" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:82 +#: screens/Template/Survey/SurveyQuestionForm.js:82 msgid "Textarea" msgstr "" -#: components/Lookup/Lookup.jsx:60 +#: components/Lookup/Lookup.js:62 msgid "That value was not found. Please enter or select a valid value." msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:379 +#: components/Schedule/shared/FrequencyDetailSubform.js:379 msgid "The" msgstr "" -#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:196 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js:196 msgid "The Execution Environment to be used when one has not been configured for a job template." msgstr "" -#: screens/Application/shared/ApplicationForm.jsx:87 +#: screens/Application/shared/ApplicationForm.js:87 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:119 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:119 msgid "" "The amount of time (in seconds) before the email\n" "notification stops trying to reach the host and times out. Ranges\n" "from 1 to 120 seconds." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:493 +#: screens/Template/shared/JobTemplateForm.js:493 msgid "" "The amount of time (in seconds) to run\n" "before the job is canceled. Defaults to 0 for no job\n" "timeout." msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:151 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:151 msgid "" "The base URL of the Grafana server - the\n" "/api/annotations endpoint will be added automatically to the base\n" "Grafana URL." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:94 +#: screens/Organization/shared/OrganizationForm.js:93 msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." msgstr "" -#: screens/Project/shared/ProjectForm.jsx:202 +#: screens/Project/shared/ProjectForm.js:199 msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:224 msgid "" "The execution environment that will be used when launching\n" -"this job template. The resolved execution environment can be overridden by \n" +"this job template. The resolved execution environment can be overridden by\n" "explicitly assigning a different one to this job template." msgstr "" -#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 +#: screens/Project/shared/ProjectSubForms/GitSubForm.js:73 msgid "" "The first fetches all references. The second\n" "fetches the Github pull request number 62, in this example\n" "the branch needs to be \"pull/62/head\"." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:111 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js:111 msgid "The full image location, including the container registry, image name, and version tag." msgstr "" -#: screens/Organization/shared/OrganizationForm.jsx:73 +#: screens/Organization/shared/OrganizationForm.js:72 msgid "" "The maximum number of hosts allowed to be managed by this organization.\n" "Value defaults to 0 which means no limit. Refer to the Ansible\n" "documentation for more details." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:431 +#: screens/Template/shared/JobTemplateForm.js:431 msgid "" "The number of parallel or simultaneous\n" "processes to use while executing the playbook. An empty value,\n" @@ -8186,53 +7864,45 @@ msgid "" "with a change to" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:183 +#: components/AdHocCommands/AdHocDetailsStep.js:183 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "" -#: components/ContentError/ContentError.jsx:40 -#: screens/Job/Job.jsx:124 +#: components/ContentError/ContentError.js:40 +#: screens/Job/Job.js:124 msgid "The page you requested could not be found." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:163 +#: components/AdHocCommands/AdHocDetailsStep.js:163 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.js:118 msgid "The project is currently syncing and the revision will be available after the sync is complete." msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:194 -#: screens/Project/ProjectList/ProjectListItem.jsx:108 +#: screens/Project/ProjectDetail/ProjectDetail.js:190 +#: screens/Project/ProjectList/ProjectListItem.js:105 msgid "The project must be synced before a revision is available." msgstr "" -#: screens/Project/ProjectList/ProjectListItem.jsx:131 +#: screens/Project/ProjectList/ProjectListItem.js:128 msgid "The project revision is currently out of date. Please refresh to fetch the most recent revision." msgstr "" -#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:103 -#~ msgid "The registry location where the container is stored." -#~ msgstr "" - -#: components/Workflow/WorkflowNodeHelp.jsx:123 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: components/Workflow/WorkflowNodeHelp.js:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:126 msgid "The resource associated with this node has been deleted." msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.js:175 msgid "" "The suggested format for variable names is lowercase and\n" "underscore-separated (for example, foo_bar, user_id, host_name,\n" "etc.). Variable names with spaces are not allowed." msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:155 -#~ msgid "The tower instance group cannot be deleted." -#~ msgstr "" - -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:47 msgid "" "There are no available playbook directories in {project_base_dir}.\n" "Either that directory is empty, or all of the contents are already\n" @@ -8242,311 +7912,252 @@ msgid "" "source control using the Source Control Type option above." msgstr "" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:52 -#~ msgid "" -#~ "There are no available playbook directories in {project_base_dir}.\n" -#~ "Either that directory is empty, or all of the contents are already\n" -#~ "assigned to other projects. Create a new directory there and make\n" -#~ "sure the playbook files can be read by the \"awx\" system user,\n" -#~ "or have {brandName} directly retrieve your playbooks from\n" -#~ "source control using the Source Control Type option above." -#~ msgstr "" - -#: screens/Template/Survey/MultipleChoiceField.jsx:35 +#: screens/Template/Survey/MultipleChoiceField.js:35 msgid "There must be a value in at least one input" msgstr "" -#: screens/Login/Login.jsx:137 +#: screens/Login/Login.js:137 msgid "There was a problem logging in. Please try again." msgstr "" -#: screens/Login/Login.jsx:130 -#~ msgid "There was a problem signing in. Please try again." -#~ msgstr "" - -#: components/ContentError/ContentError.jsx:41 +#: components/ContentError/ContentError.js:41 msgid "There was an error loading this content. Please reload the page." msgstr "" -#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:56 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.js:56 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:599 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js:599 msgid "There was an error saving the workflow." msgstr "" -#: screens/Setting/shared/LoggingTestAlert.jsx:19 -#~ msgid "There was an error testing the log aggregator." -#~ msgstr "" - -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 -#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:68 +#: components/AdHocCommands/AdHocDetailsStep.js:68 msgid "These are the modules that {0} supports running commands against." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:73 -#~ msgid "These are the modules that {brandName} supports running commands against." -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:141 +#: components/AdHocCommands/AdHocDetailsStep.js:141 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:124 +#: components/AdHocCommands/AdHocDetailsStep.js:124 msgid "These arguments are used with the specified module." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:113 +#: components/AdHocCommands/AdHocDetailsStep.js:113 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:391 +#: components/Schedule/shared/FrequencyDetailSubform.js:391 msgid "Third" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:156 +#: screens/Template/shared/JobTemplateForm.js:156 msgid "This Project needs to be updated" msgstr "" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:285 -#: screens/Template/Survey/SurveyList.jsx:122 +#: components/PaginatedTable/ToolbarDeleteButton.js:285 +#: screens/Template/Survey/SurveyList.js:122 msgid "This action will delete the following:" msgstr "" -#: screens/User/UserTeams/UserTeamList.jsx:224 +#: screens/User/UserTeams/UserTeamList.js:223 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: screens/Team/TeamRoles/TeamRolesList.jsx:237 -#: screens/User/UserRoles/UserRolesList.jsx:235 +#: screens/Team/TeamRoles/TeamRolesList.js:237 +#: screens/User/UserRoles/UserRolesList.js:235 msgid "This action will disassociate the following role from {0}:" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.js:131 msgid "This action will disassociate the following:" msgstr "" -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:115 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:112 msgid "This container group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Credential/CredentialDetail/CredentialDetail.jsx:297 +#: screens/Credential/CredentialDetail/CredentialDetail.js:293 msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:123 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:119 msgid "This credential type is currently being used by some credentials and cannot be deleted" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and help\n" -#~ "streamline customer experience and success." -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and to provide\n" -#~ "Insights Analytics to subscribers." -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:77 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:74 msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" "Insights for Ansible Automation Platform." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Software and to provide\n" -#~ "Red Hat Insights for Ansible." -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:65 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:62 msgid "" "This data is used to enhance\n" "future releases of the Tower Software and help\n" "streamline customer experience and success." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 -#~ msgid "" -#~ "This data is used to enhance\n" -#~ "future releases of the Tower Software and to provide\n" -#~ "Insights Analytics to Tower subscribers." -#~ msgstr "" - -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:135 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:131 msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:261 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:258 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "" -#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:52 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.js:52 msgid "This field may not be blank" msgstr "" -#: util/validators.jsx:120 +#: util/validators.js:121 msgid "This field must be a number" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.js:107 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" -#: util/validators.jsx:60 +#: util/validators.js:61 msgid "This field must be a number and have a value between {min} and {max}" msgstr "" -#: util/validators.jsx:160 +#: util/validators.js:161 msgid "This field must be a regular expression" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:49 -#: util/validators.jsx:104 +#: components/Schedule/shared/FrequencyDetailSubform.js:49 +#: util/validators.js:105 msgid "This field must be an integer" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:99 +#: components/LaunchPrompt/steps/useSurveyStep.js:99 msgid "This field must be at least {0} characters" msgstr "" -#: util/validators.jsx:51 +#: util/validators.js:52 msgid "This field must be at least {min} characters" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:52 +#: components/Schedule/shared/FrequencyDetailSubform.js:52 msgid "This field must be greater than 0" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:111 -#: screens/Template/shared/JobTemplateForm.jsx:153 -#: screens/User/shared/UserForm.jsx:81 -#: screens/User/shared/UserForm.jsx:92 -#: util/validators.jsx:5 -#: util/validators.jsx:69 +#: components/LaunchPrompt/steps/useSurveyStep.js:111 +#: screens/Template/shared/JobTemplateForm.js:153 +#: screens/User/shared/UserForm.js:93 +#: screens/User/shared/UserForm.js:104 +#: util/validators.js:5 +#: util/validators.js:70 msgid "This field must not be blank" msgstr "" -#: util/validators.jsx:94 +#: util/validators.js:95 msgid "This field must not contain spaces" msgstr "" -#: components/LaunchPrompt/steps/useSurveyStep.jsx:102 +#: components/LaunchPrompt/steps/useSurveyStep.js:102 msgid "This field must not exceed {0} characters" msgstr "" -#: util/validators.jsx:42 +#: util/validators.js:43 msgid "This field must not exceed {max} characters" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:51 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js:51 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:123 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:124 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 -msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +#: components/LaunchPrompt/steps/useInventoryStep.js:59 +msgid "This inventory is applied to all workflow nodes within this workflow ({0}) that prompt for an inventory." msgstr "" -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:132 msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:242 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:238 msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" msgstr "" -#: screens/Application/Applications.jsx:74 +#: screens/Application/Applications.js:74 msgid "This is the only time the client secret will be shown." msgstr "" -#: screens/User/UserTokens/UserTokens.jsx:58 +#: screens/User/UserTokens/UserTokens.js:58 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:408 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:408 msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:176 +#: screens/Organization/OrganizationDetail/OrganizationDetail.js:172 msgid "This organization is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Project/ProjectDetail/ProjectDetail.jsx:279 +#: screens/Project/ProjectDetail/ProjectDetail.js:275 msgid "This project is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: screens/Project/shared/ProjectSyncButton.jsx:33 +#: screens/Project/shared/ProjectSyncButton.js:33 msgid "This project is currently on sync and cannot be clicked until sync process completed" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:156 -#~ msgid "This project needs to be updated" -#~ msgstr "" - -#: components/Schedule/ScheduleList/ScheduleList.jsx:126 +#: components/Schedule/ScheduleList/ScheduleList.js:126 msgid "This schedule is missing an Inventory" msgstr "" -#: components/Schedule/ScheduleList/ScheduleList.jsx:151 +#: components/Schedule/ScheduleList/ScheduleList.js:151 msgid "This schedule is missing required survey values" msgstr "" -#: components/AdHocCommands/AdHocCommandsWizard.jsx:65 -#: components/AdHocCommands/AdHocCommandsWizard.jsx:105 -#: components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.js:64 +#: components/LaunchPrompt/steps/StepName.js:27 msgid "This step contains errors" msgstr "" -#: screens/User/shared/UserForm.jsx:149 +#: screens/User/shared/UserForm.js:151 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" -#: screens/Setting/shared/RevertAllAlert.jsx:36 +#: screens/Setting/shared/RevertAllAlert.js:36 msgid "" "This will revert all configuration values on this page to\n" "their factory defaults. Are you sure you want to proceed?" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js:40 msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:246 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:283 +#: components/Schedule/shared/FrequencyDetailSubform.js:283 msgid "Thu" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:288 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:429 +#: components/Schedule/shared/FrequencyDetailSubform.js:288 +#: components/Schedule/shared/FrequencyDetailSubform.js:429 msgid "Thursday" msgstr "" -#: screens/ActivityStream/ActivityStream.jsx:240 -#: screens/ActivityStream/ActivityStream.jsx:252 -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 -#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.js:236 +#: screens/ActivityStream/ActivityStream.js:248 +#: screens/ActivityStream/ActivityStreamDetailButton.js:41 +#: screens/ActivityStream/ActivityStreamListItem.js:42 msgid "Time" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:125 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:122 msgid "" "Time in seconds to consider a project\n" "to be current. During job runs and callbacks the task\n" @@ -8556,7 +8167,7 @@ msgid "" "performed." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:232 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:229 msgid "" "Time in seconds to consider an inventory sync\n" "to be current. During job runs and callbacks the task system will\n" @@ -8565,962 +8176,920 @@ msgid "" "inventory sync will be performed." msgstr "" -#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:16 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.js:16 msgid "Timed out" msgstr "" -#: components/PromptDetail/PromptDetail.jsx:115 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:125 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:112 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169 -#: screens/Template/shared/JobTemplateForm.jsx:492 +#: components/PromptDetail/PromptDetail.js:115 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:125 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:112 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:233 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:166 +#: screens/Template/shared/JobTemplateForm.js:492 msgid "Timeout" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:176 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:173 msgid "Timeout minutes" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:190 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:187 msgid "Timeout seconds" msgstr "" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:93 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:93 msgid "Toggle Legend" msgstr "" -#: components/FormField/PasswordInput.jsx:31 +#: components/FormField/PasswordInput.js:39 msgid "Toggle Password" msgstr "" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:103 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:103 msgid "Toggle Tools" msgstr "" -#: screens/Job/JobOutput/PageControls.jsx:36 -msgid "Toggle expand/collapse event lines" -msgstr "" - -#: components/HostToggle/HostToggle.jsx:64 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 +#: components/HostToggle/HostToggle.js:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js:51 msgid "Toggle host" msgstr "" -#: components/InstanceToggle/InstanceToggle.jsx:55 +#: components/InstanceToggle/InstanceToggle.js:55 msgid "Toggle instance" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:80 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:80 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:82 msgid "Toggle legend" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:46 +#: components/NotificationList/NotificationListItem.js:46 msgid "Toggle notification approvals" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:85 +#: components/NotificationList/NotificationListItem.js:85 msgid "Toggle notification failure" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:59 +#: components/NotificationList/NotificationListItem.js:59 msgid "Toggle notification start" msgstr "" -#: components/NotificationList/NotificationListItem.jsx:72 +#: components/NotificationList/NotificationListItem.js:72 msgid "Toggle notification success" msgstr "" -#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:61 +#: components/Schedule/ScheduleToggle/ScheduleToggle.js:61 msgid "Toggle schedule" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:92 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:94 msgid "Toggle tools" msgstr "" -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:369 -#: screens/User/UserTokens/UserTokens.jsx:63 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:369 +#: screens/User/UserTokens/UserTokens.js:63 msgid "Token" msgstr "" -#: screens/User/UserTokens/UserTokens.jsx:49 -#: screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.js:49 +#: screens/User/UserTokens/UserTokens.js:52 msgid "Token information" msgstr "" -#: screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.js:73 msgid "Token not found." msgstr "" -#: screens/User/UserTokenList/UserTokenListItem.jsx:39 -#~ msgid "Token type" -#~ msgstr "" - -#: screens/Application/Application/Application.jsx:78 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:109 -#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:133 -#: screens/Application/Applications.jsx:39 -#: screens/User/User.jsx:75 -#: screens/User/UserTokenList/UserTokenList.jsx:112 -#: screens/User/Users.jsx:34 +#: screens/Application/Application/Application.js:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:109 +#: screens/Application/ApplicationTokens/ApplicationTokenList.js:132 +#: screens/Application/Applications.js:39 +#: screens/User/User.js:75 +#: screens/User/UserTokenList/UserTokenList.js:112 +#: screens/User/Users.js:34 msgid "Tokens" msgstr "" -#: components/Workflow/WorkflowTools.jsx:83 +#: components/Workflow/WorkflowTools.js:83 msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.js:132 msgid "Top Pagination" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:272 -#: screens/InstanceGroup/Instances/InstanceList.jsx:214 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:124 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:290 +#: screens/InstanceGroup/Instances/InstanceList.js:213 +#: screens/InstanceGroup/Instances/InstanceListItem.js:124 msgid "Total Jobs" msgstr "" -#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:91 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:76 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.js:91 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:76 msgid "Total Nodes" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:74 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:74 msgid "Total jobs" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:87 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:84 msgid "Track submodules" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:56 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:97 +#: components/PromptDetail/PromptProjectDetail.js:56 +#: screens/Project/ProjectDetail/ProjectDetail.js:93 msgid "Track submodules latest commit on branch" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:87 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:166 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:166 msgid "Trial" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:158 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:187 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:217 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:262 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:316 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:88 +#: components/JobList/JobListItem.js:262 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:64 +#: screens/Job/JobDetail/JobDetail.js:259 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:158 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:187 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:217 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:262 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:316 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:84 msgid "True" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:263 +#: components/Schedule/shared/FrequencyDetailSubform.js:263 msgid "Tue" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:268 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:419 +#: components/Schedule/shared/FrequencyDetailSubform.js:268 +#: components/Schedule/shared/FrequencyDetailSubform.js:419 msgid "Tuesday" msgstr "" -#: components/NotificationList/NotificationList.jsx:201 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:161 +#: components/NotificationList/NotificationList.js:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:161 msgid "Twilio" msgstr "" -#: components/JobList/JobList.jsx:218 -#: components/JobList/JobListItem.jsx:83 -#: 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:166 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:94 -#: components/TemplateList/TemplateList.jsx:199 -#: components/TemplateList/TemplateList.jsx:224 -#: components/TemplateList/TemplateListItem.jsx:175 +#: components/JobList/JobList.js:223 +#: components/JobList/JobListItem.js:90 +#: components/Lookup/ProjectLookup.js:132 +#: components/NotificationList/NotificationList.js:219 +#: components/NotificationList/NotificationListItem.js:30 +#: components/PromptDetail/PromptDetail.js:112 +#: components/Schedule/ScheduleList/ScheduleList.js:166 +#: components/Schedule/ScheduleList/ScheduleListItem.js:94 +#: components/TemplateList/TemplateList.js:204 +#: components/TemplateList/TemplateList.js:229 +#: components/TemplateList/TemplateListItem.js:176 #: 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:146 -#: screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:118 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:12 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:270 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#: screens/InstanceGroup/Instances/InstanceList.jsx:212 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:120 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 -#: screens/Inventory/InventoryList/InventoryList.jsx:197 -#: screens/Inventory/InventoryList/InventoryListItem.jsx:93 -#: screens/Inventory/InventorySources/InventorySourceList.jsx:219 -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:93 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:114 -#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:68 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:162 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:75 -#: screens/Project/ProjectList/ProjectList.jsx:178 -#: screens/Project/ProjectList/ProjectList.jsx:207 -#: screens/Project/ProjectList/ProjectListItem.jsx:210 -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 -#: 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:157 -#: screens/User/UserRoles/UserRolesListItem.jsx:21 +#: components/Workflow/WorkflowNodeHelp.js:136 +#: components/Workflow/WorkflowNodeHelp.js:162 +#: screens/Credential/CredentialList/CredentialList.js:146 +#: screens/Credential/CredentialList/CredentialListItem.js:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:118 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:12 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:47 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:56 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:288 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:68 +#: screens/InstanceGroup/Instances/InstanceList.js:211 +#: screens/InstanceGroup/Instances/InstanceListItem.js:120 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:75 +#: screens/Inventory/InventoryList/InventoryList.js:209 +#: screens/Inventory/InventoryList/InventoryListItem.js:93 +#: screens/Inventory/InventorySources/InventorySourceList.js:218 +#: screens/Inventory/InventorySources/InventorySourceListItem.js:93 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:101 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js:114 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.js:68 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js:161 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js:75 +#: screens/Project/ProjectList/ProjectList.js:183 +#: screens/Project/ProjectList/ProjectList.js:212 +#: screens/Project/ProjectList/ProjectListItem.js:207 +#: screens/Team/TeamRoles/TeamRoleListItem.js:17 +#: screens/Team/TeamRoles/TeamRolesList.js:182 +#: screens/Template/Survey/SurveyListItem.js:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js:94 +#: screens/User/UserDetail/UserDetail.js:71 +#: screens/User/UserRoles/UserRolesList.js:157 +#: screens/User/UserRoles/UserRolesListItem.js:21 msgid "Type" msgstr "" -#: screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:45 -#: screens/Project/shared/ProjectForm.jsx:250 +#: screens/Credential/shared/TypeInputsSubForm.js:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:45 +#: screens/Project/shared/ProjectForm.js:247 msgid "Type Details" msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:61 +#: screens/Template/Survey/MultipleChoiceField.js:61 msgid "" "Type answer then click checkbox on right to select answer as\n" "default." msgstr "" -#: screens/Template/Survey/MultipleChoiceField.jsx:57 -#~ msgid "Type answer then click checkbox on right to select answer as default." -#~ msgstr "" +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js:50 +msgid "UTC" +msgstr "" -#: components/HostForm/HostForm.jsx:61 +#: components/HostForm/HostForm.js:62 msgid "Unable to change inventory on a host" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:84 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:48 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:48 +#: screens/InstanceGroup/Instances/InstanceListItem.js:78 msgid "Unavailable" msgstr "" -#: screens/Setting/shared/RevertButton.jsx:53 -#: screens/Setting/shared/RevertButton.jsx:62 +#: screens/Setting/shared/RevertButton.js:53 +#: screens/Setting/shared/RevertButton.js:62 msgid "Undo" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:829 +#: screens/Job/JobOutput/JobOutput.js:843 msgid "Unfollow" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:129 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:125 msgid "Unlimited" msgstr "" -#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:104 +#: screens/Job/JobOutput/shared/HostStatusBar.js:51 +#: screens/Job/JobOutput/shared/OutputToolbar.js:101 msgid "Unreachable" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:103 +#: screens/Job/JobOutput/shared/OutputToolbar.js:100 msgid "Unreachable Host Count" msgstr "" -#: screens/Job/JobOutput/shared/OutputToolbar.jsx:105 +#: screens/Job/JobOutput/shared/OutputToolbar.js:102 msgid "Unreachable Hosts" msgstr "" -#: util/dates.jsx:93 +#: util/dates.js:93 msgid "Unrecognized day string" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:15 msgid "Unsaved changes modal" msgstr "" -#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:98 +#: screens/Project/shared/ProjectSubForms/SharedFields.js:95 msgid "Update Revision on Launch" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 -#~ msgid "Update on Launch" -#~ msgstr "" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 -#~ msgid "Update on Project Update" -#~ msgstr "" - -#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:131 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: components/PromptDetail/PromptInventorySourceDetail.js:64 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:127 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:164 msgid "Update on launch" msgstr "" -#: components/PromptDetail/PromptInventorySourceDetail.jsx:69 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:136 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 +#: components/PromptDetail/PromptInventorySourceDetail.js:69 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:132 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:192 msgid "Update on project update" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:120 msgid "Update options" msgstr "" -#: components/PromptDetail/PromptProjectDetail.jsx:61 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 +#: components/PromptDetail/PromptProjectDetail.js:61 +#: screens/Project/ProjectDetail/ProjectDetail.js:98 msgid "Update revision on job launch" msgstr "" -#: screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.js:87 msgid "Update settings pertaining to Jobs within {0}" msgstr "" -#: screens/Setting/SettingList.jsx:91 -#~ msgid "Update settings pertaining to Jobs within {brandName}" -#~ msgstr "" - -#: screens/Template/shared/WebhookSubForm.jsx:198 +#: screens/Template/shared/WebhookSubForm.js:198 msgid "Update webhook key" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.js:110 msgid "Updating" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:119 msgid "Upload a .zip file" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:98 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js: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 "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 -#~ msgid "Use Fact Storage" -#~ msgstr "" - -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:45 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:45 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:128 msgid "Use SSL" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:50 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:50 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:133 msgid "Use TLS" msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:72 msgid "" "Use custom messages to change the content of\n" "notifications sent when a job starts, succeeds, or fails. Use\n" "curly braces to access information about the job:" msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 -#~ msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" -#~ msgstr "" - -#: screens/InstanceGroup/Instances/InstanceList.jsx:216 +#: screens/InstanceGroup/Instances/InstanceList.js:215 msgid "Used Capacity" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:75 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:44 -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:74 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:76 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:84 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js:44 +#: screens/InstanceGroup/Instances/InstanceListItem.js:74 msgid "Used capacity" msgstr "" -#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:12 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.js:12 msgid "User" msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:155 +#: components/AppContainer/PageHeaderToolbar.js:155 msgid "User Details" msgstr "" -#: screens/Setting/SettingList.jsx:115 -#: screens/Setting/Settings.jsx:114 +#: screens/Setting/SettingList.js:116 +#: screens/Setting/Settings.js:114 msgid "User Interface" msgstr "" -#: screens/Setting/SettingList.jsx:120 +#: screens/Setting/SettingList.js:121 msgid "User Interface settings" msgstr "" -#: components/ResourceAccessList/ResourceAccessListItem.jsx:72 -#: screens/User/UserRoles/UserRolesList.jsx:143 +#: components/ResourceAccessList/ResourceAccessListItem.js:72 +#: screens/User/UserRoles/UserRolesList.js:143 msgid "User Roles" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:67 -#: screens/User/shared/UserForm.jsx:131 +#: screens/User/UserDetail/UserDetail.js:68 +#: screens/User/shared/UserForm.js:120 msgid "User Type" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:62 -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:63 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:59 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:60 msgid "User analytics" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:37 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:202 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:34 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js:202 msgid "User and Insights analytics" msgstr "" -#: components/AppContainer/PageHeaderToolbar.jsx:150 +#: components/AppContainer/PageHeaderToolbar.js:150 msgid "User details" msgstr "" -#: screens/User/User.jsx:95 +#: screens/User/User.js:95 msgid "User not found." msgstr "" -#: screens/User/UserTokenList/UserTokenList.jsx:170 +#: screens/User/UserTokenList/UserTokenList.js:169 msgid "User tokens" msgstr "" -#: components/AddRole/AddResourceRole.jsx:22 -#: components/AddRole/AddResourceRole.jsx:37 -#: components/ResourceAccessList/ResourceAccessList.jsx:130 -#: components/ResourceAccessList/ResourceAccessList.jsx:183 -#: screens/Login/Login.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:100 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:250 -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:304 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:64 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:257 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:334 -#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:437 -#: 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:120 -#: screens/User/UserList/UserList.jsx:162 -#: screens/User/UserList/UserListItem.jsx:38 -#: screens/User/shared/UserForm.jsx:64 +#: components/AddRole/AddResourceRole.js:22 +#: components/AddRole/AddResourceRole.js:37 +#: components/ResourceAccessList/ResourceAccessList.js:130 +#: components/ResourceAccessList/ResourceAccessList.js:183 +#: screens/Login/Login.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:100 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:250 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:304 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:64 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:257 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:334 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.js:437 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js:92 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:207 +#: screens/User/UserDetail/UserDetail.js:64 +#: screens/User/UserList/UserList.js:120 +#: screens/User/UserList/UserList.js:161 +#: screens/User/UserList/UserListItem.js:38 +#: screens/User/shared/UserForm.js:77 msgid "Username" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:89 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:89 msgid "Username / password" msgstr "" -#: components/AddRole/AddResourceRole.jsx:197 -#: components/AddRole/AddResourceRole.jsx:198 -#: routeConfig.jsx:99 -#: screens/ActivityStream/ActivityStream.jsx:179 -#: screens/Team/Teams.jsx:29 -#: screens/User/UserList/UserList.jsx:115 -#: screens/User/UserList/UserList.jsx:155 -#: screens/User/Users.jsx:15 -#: screens/User/Users.jsx:26 +#: components/AddRole/AddResourceRole.js:197 +#: components/AddRole/AddResourceRole.js:198 +#: routeConfig.js:99 +#: screens/ActivityStream/ActivityStream.js:175 +#: screens/Team/Teams.js:29 +#: screens/User/UserList/UserList.js:115 +#: screens/User/UserList/UserList.js:154 +#: screens/User/Users.js:15 +#: screens/User/Users.js:26 msgid "Users" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js:102 msgid "VMware vCenter" msgstr "" -#: components/HostForm/HostForm.jsx:113 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:80 -#: components/PromptDetail/PromptDetail.jsx:250 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:271 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:131 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:371 -#: screens/Host/HostDetail/HostDetail.jsx:104 -#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: 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:73 -#: screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: screens/Job/JobDetail/JobDetail.jsx:341 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:209 -#: screens/Template/shared/JobTemplateForm.jsx:415 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217 +#: components/HostForm/HostForm.js:114 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:80 +#: components/PromptDetail/PromptDetail.js:250 +#: components/PromptDetail/PromptJobTemplateDetail.js:271 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:131 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:367 +#: screens/Host/HostDetail/HostDetail.js:96 +#: screens/Inventory/InventoryDetail/InventoryDetail.js:100 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js:37 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:86 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:131 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js:51 +#: screens/Inventory/shared/InventoryForm.js:70 +#: screens/Inventory/shared/InventoryGroupForm.js:46 +#: screens/Inventory/shared/SmartInventoryForm.js:95 +#: screens/Job/JobDetail/JobDetail.js:354 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:367 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:205 +#: screens/Template/shared/JobTemplateForm.js:415 +#: screens/Template/shared/WorkflowJobTemplateForm.js:217 msgid "Variables" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:752 +#: screens/Job/JobOutput/JobOutput.js:766 msgid "Variables Prompted" msgstr "" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password" msgstr "" -#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:121 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.js:121 msgid "Vault password | {credId}" msgstr "" -#: screens/Job/JobOutput/JobOutput.jsx:757 +#: screens/Job/JobOutput/JobOutput.js:771 msgid "Verbose" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:131 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 -#: components/PromptDetail/PromptDetail.jsx:191 -#: components/PromptDetail/PromptInventorySourceDetail.jsx:118 -#: components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:306 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:187 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 -#: screens/Job/JobDetail/JobDetail.jsx:222 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 -#: screens/Template/shared/JobTemplateForm.jsx:465 +#: components/AdHocCommands/AdHocDetailsStep.js:131 +#: components/LaunchPrompt/steps/OtherPromptsStep.js:147 +#: components/PromptDetail/PromptDetail.js:191 +#: components/PromptDetail/PromptInventorySourceDetail.js:118 +#: components/PromptDetail/PromptJobTemplateDetail.js:156 +#: components/Schedule/ScheduleDetail/ScheduleDetail.js:302 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:183 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:87 +#: screens/Job/JobDetail/JobDetail.js:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:232 +#: screens/Template/shared/JobTemplateForm.js:465 msgid "Verbosity" msgstr "" -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:72 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:68 msgid "Version" msgstr "" -#: screens/Setting/ActivityStream/ActivityStream.jsx:33 -#~ msgid "View Activity Stream settings" -#~ msgstr "" - -#: screens/Setting/AzureAD/AzureAD.jsx:25 +#: screens/Setting/AzureAD/AzureAD.js:25 msgid "View Azure AD settings" msgstr "" -#: screens/Credential/Credential.jsx:131 -#: screens/Credential/Credential.jsx:143 +#: screens/Credential/Credential.js:131 +#: screens/Credential/Credential.js:143 msgid "View Credential Details" msgstr "" -#: components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.js:146 msgid "View Details" msgstr "" -#: screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.js:58 msgid "View GitHub Settings" msgstr "" -#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.js:26 msgid "View Google OAuth 2.0 settings" msgstr "" -#: screens/Host/Host.jsx:131 +#: screens/Host/Host.js:131 msgid "View Host Details" msgstr "" -#: screens/Inventory/Inventory.jsx:178 -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:143 -#: screens/Inventory/SmartInventory.jsx:165 +#: screens/Inventory/Inventory.js:178 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:142 +#: screens/Inventory/SmartInventory.js:165 msgid "View Inventory Details" msgstr "" -#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:93 +#: screens/Inventory/InventoryGroup/InventoryGroup.js:92 msgid "View Inventory Groups" msgstr "" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:160 +#: screens/Inventory/InventoryHost/InventoryHost.js:160 msgid "View Inventory Host Details" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:47 msgid "View JSON examples at <0>www.json.org" msgstr "" -#: screens/Job/Job.jsx:165 +#: screens/Job/Job.js:165 msgid "View Job Details" msgstr "" -#: screens/Setting/Jobs/Jobs.jsx:25 +#: screens/Setting/Jobs/Jobs.js:25 msgid "View Jobs settings" msgstr "" -#: screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.js:38 msgid "View LDAP Settings" msgstr "" -#: screens/Setting/Logging/Logging.jsx:32 +#: screens/Setting/Logging/Logging.js:32 msgid "View Logging settings" msgstr "" -#: screens/Setting/MiscAuthentication/MiscAuthentication.jsx:32 +#: screens/Setting/MiscAuthentication/MiscAuthentication.js:32 msgid "View Miscellaneous Authentication settings" msgstr "" -#: screens/Setting/MiscSystem/MiscSystem.jsx:32 +#: screens/Setting/MiscSystem/MiscSystem.js:32 msgid "View Miscellaneous System settings" msgstr "" -#: screens/Organization/Organization.jsx:225 +#: screens/Organization/Organization.js:225 msgid "View Organization Details" msgstr "" -#: screens/Project/Project.jsx:198 +#: screens/Project/Project.js:198 msgid "View Project Details" msgstr "" -#: screens/Setting/RADIUS/RADIUS.jsx:25 +#: screens/Setting/RADIUS/RADIUS.js:25 msgid "View RADIUS settings" msgstr "" -#: screens/Setting/SAML/SAML.jsx:25 +#: screens/Setting/SAML/SAML.js:25 msgid "View SAML settings" msgstr "" -#: components/Schedule/Schedule.jsx:83 +#: components/Schedule/Schedule.js:78 +#: components/Schedule/Schedule.js:96 msgid "View Schedules" msgstr "" -#: screens/Setting/Subscription/Subscription.jsx:30 +#: screens/Setting/Subscription/Subscription.js:30 msgid "View Settings" msgstr "" -#: screens/Template/Template.jsx:159 -#: screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.js:159 +#: screens/Template/WorkflowJobTemplate.js:149 msgid "View Survey" msgstr "" -#: screens/Setting/TACACS/TACACS.jsx:25 +#: screens/Setting/TACACS/TACACS.js:25 msgid "View TACACS+ settings" msgstr "" -#: screens/Team/Team.jsx:116 +#: screens/Team/Team.js:116 msgid "View Team Details" msgstr "" -#: screens/Template/Template.jsx:259 -#: screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.js:260 +#: screens/Template/WorkflowJobTemplate.js:279 msgid "View Template Details" msgstr "" -#: screens/User/UserToken/UserToken.jsx:100 +#: screens/User/UserToken/UserToken.js:100 msgid "View Tokens" msgstr "" -#: screens/User/User.jsx:140 +#: screens/User/User.js:140 msgid "View User Details" msgstr "" -#: screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.js:26 msgid "View User Interface settings" msgstr "" -#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.js:104 msgid "View Workflow Approval Details" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:58 msgid "View YAML examples at <0>docs.ansible.com" msgstr "" -#: components/ScreenHeader/ScreenHeader.jsx:54 -#: components/ScreenHeader/ScreenHeader.jsx:57 +#: components/ScreenHeader/ScreenHeader.js:54 +#: components/ScreenHeader/ScreenHeader.js:57 msgid "View activity stream" msgstr "" -#: screens/Credential/Credential.jsx:92 +#: screens/Credential/Credential.js:92 msgid "View all Credentials." msgstr "" -#: screens/Host/Host.jsx:91 +#: screens/Host/Host.js:91 msgid "View all Hosts." msgstr "" -#: screens/Inventory/Inventory.jsx:92 -#: screens/Inventory/SmartInventory.jsx:93 +#: screens/Inventory/Inventory.js:92 +#: screens/Inventory/SmartInventory.js:93 msgid "View all Inventories." msgstr "" -#: screens/Inventory/InventoryHost/InventoryHost.jsx:101 +#: screens/Inventory/InventoryHost/InventoryHost.js:101 msgid "View all Inventory Hosts." msgstr "" -#: screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.js:40 msgid "View all Jobs" msgstr "" -#: screens/Job/Job.jsx:125 +#: screens/Job/Job.js:125 msgid "View all Jobs." msgstr "" -#: screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +#: screens/NotificationTemplate/NotificationTemplate.js:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.js:52 msgid "View all Notification Templates." msgstr "" -#: screens/Organization/Organization.jsx:155 +#: screens/Organization/Organization.js:155 msgid "View all Organizations." msgstr "" -#: screens/Project/Project.jsx:140 +#: screens/Project/Project.js:140 msgid "View all Projects." msgstr "" -#: screens/Team/Team.jsx:74 +#: screens/Team/Team.js:74 msgid "View all Teams." msgstr "" -#: screens/Template/Template.jsx:176 -#: screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.js:176 +#: screens/Template/WorkflowJobTemplate.js:180 msgid "View all Templates." msgstr "" -#: screens/User/User.jsx:96 +#: screens/User/User.js:96 msgid "View all Users." msgstr "" -#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.js:54 msgid "View all Workflow Approvals." msgstr "" -#: screens/Application/Application/Application.jsx:94 +#: screens/Application/Application/Application.js:94 msgid "View all applications." msgstr "" -#: screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.js:77 msgid "View all credential types" msgstr "" -#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +#: screens/ExecutionEnvironment/ExecutionEnvironment.js:84 msgid "View all execution environments" msgstr "" -#: screens/InstanceGroup/ContainerGroup.jsx:95 -#: screens/InstanceGroup/InstanceGroup.jsx:101 +#: screens/InstanceGroup/ContainerGroup.js:95 +#: screens/InstanceGroup/InstanceGroup.js:101 msgid "View all instance groups" msgstr "" -#: screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.js:134 msgid "View all management jobs" msgstr "" -#: screens/Setting/Settings.jsx:197 +#: screens/Setting/Settings.js:197 msgid "View all settings" msgstr "" -#: screens/User/UserToken/UserToken.jsx:74 +#: screens/User/UserToken/UserToken.js:74 msgid "View all tokens." msgstr "" -#: screens/Setting/SettingList.jsx:138 -#~ msgid "View and edit your license information" -#~ msgstr "" - -#: screens/Setting/SettingList.jsx:127 +#: screens/Setting/SettingList.js:128 msgid "View and edit your subscription information" msgstr "" -#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 -#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.js:25 +#: screens/ActivityStream/ActivityStreamListItem.js:50 msgid "View event details" msgstr "" -#: screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.js:168 msgid "View inventory source details" msgstr "" -#: components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.js:44 msgid "View job {0}" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:174 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js:177 msgid "View node details" msgstr "" -#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.js:80 msgid "View smart inventory host details" msgstr "" -#: routeConfig.jsx:28 -#: screens/ActivityStream/ActivityStream.jsx:140 +#: routeConfig.js:28 +#: screens/ActivityStream/ActivityStream.js:136 msgid "Views" msgstr "" -#: components/TemplateList/TemplateListItem.jsx:180 -#: components/TemplateList/TemplateListItem.jsx:186 -#: screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.js:181 +#: components/TemplateList/TemplateListItem.js:187 +#: screens/Template/WorkflowJobTemplate.js:141 msgid "Visualizer" msgstr "" -#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:42 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.js:42 msgid "WARNING:" msgstr "" -#: components/JobList/JobList.jsx:201 -#: components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.js:206 +#: components/Workflow/WorkflowNodeHelp.js:80 msgid "Waiting" msgstr "" -#: components/Workflow/WorkflowLegend.jsx:114 -#: screens/Job/JobOutput/JobOutput.jsx:759 +#: components/Workflow/WorkflowLegend.js:114 +#: screens/Job/JobOutput/JobOutput.js:773 msgid "Warning" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js:14 msgid "Warning: Unsaved Changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:119 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:119 msgid "We were unable to locate licenses associated with this account." msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:139 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js:139 msgid "We were unable to locate subscriptions associated with this account." msgstr "" -#: components/DetailList/LaunchedByDetail.jsx:53 -#: components/NotificationList/NotificationList.jsx:202 -#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:162 +#: components/DetailList/LaunchedByDetail.js:53 +#: components/NotificationList/NotificationList.js:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js:162 msgid "Webhook" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:179 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:101 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/shared/WebhookSubForm.jsx:209 +#: components/PromptDetail/PromptJobTemplateDetail.js:179 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:101 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:260 +#: screens/Template/shared/WebhookSubForm.js:209 msgid "Webhook Credential" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:167 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:163 msgid "Webhook Credentials" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:175 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:90 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.js:175 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:159 +#: screens/Template/shared/WebhookSubForm.js:179 msgid "Webhook Key" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:168 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:247 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 -#: screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.js:168 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:247 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:150 +#: screens/Template/shared/WebhookSubForm.js:131 msgid "Webhook Service" msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:171 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:159 -#: screens/Template/shared/WebhookSubForm.jsx:163 -#: screens/Template/shared/WebhookSubForm.jsx:173 +#: components/PromptDetail/PromptJobTemplateDetail.js:171 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:93 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:253 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:155 +#: screens/Template/shared/WebhookSubForm.js:163 +#: screens/Template/shared/WebhookSubForm.js:173 msgid "Webhook URL" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:658 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:253 +#: screens/Template/shared/JobTemplateForm.js:658 +#: screens/Template/shared/WorkflowJobTemplateForm.js:253 msgid "Webhook details" msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:166 +#: screens/Template/shared/WebhookSubForm.js:166 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:182 +#: screens/Template/shared/WebhookSubForm.js:182 msgid "Webhook services can use this as a shared secret." msgstr "" -#: components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:41 -#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:148 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 +#: components/PromptDetail/PromptJobTemplateDetail.js:85 +#: components/PromptDetail/PromptWFJobTemplateDetail.js:41 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.js:148 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js:62 msgid "Webhooks" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:273 +#: components/Schedule/shared/FrequencyDetailSubform.js:273 msgid "Wed" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:278 -#: components/Schedule/shared/FrequencyDetailSubform.jsx:424 +#: components/Schedule/shared/FrequencyDetailSubform.js:278 +#: components/Schedule/shared/FrequencyDetailSubform.js:424 msgid "Wednesday" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:146 +#: components/Schedule/shared/ScheduleForm.js:146 msgid "Week" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.js:445 msgid "Weekday" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.js:450 msgid "Weekend day" msgstr "" -#: screens/Login/Login.jsx:150 -#~ msgid "Welcome to Ansible {brandName}!" -#~ msgstr "" - -#: screens/Login/Login.jsx:152 -#~ msgid "Welcome to Ansible {brandName}! Please Sign In." -#~ msgstr "" - -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:60 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js:60 msgid "" "Welcome to Red Hat Ansible Automation Platform!\n" "Please complete the steps below to activate your subscription." msgstr "" -#: screens/Login/Login.jsx:161 +#: screens/Login/Login.js:161 msgid "Welcome to {brandName}!" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:157 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:154 msgid "" "When not checked, a merge will be performed,\n" "combining local variables with those found on the\n" "external source." msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:140 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:137 msgid "" "When not checked, local child\n" "hosts and groups not found on the external source will remain\n" "untouched by the inventory update process." msgstr "" -#: components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.js:96 msgid "Workflow" msgstr "" -#: components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.js:63 msgid "Workflow Approval" msgstr "" -#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.js:52 msgid "Workflow Approval not found." msgstr "" -#: routeConfig.jsx:52 -#: 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 +#: routeConfig.js:52 +#: screens/ActivityStream/ActivityStream.js:147 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:173 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:210 +#: screens/WorkflowApproval/WorkflowApprovals.js:12 +#: screens/WorkflowApproval/WorkflowApprovals.js:21 msgid "Workflow Approvals" msgstr "" -#: components/JobList/JobList.jsx:188 -#: components/JobList/JobListItem.jsx:39 -#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: screens/Job/JobDetail/JobDetail.jsx:83 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.js:193 +#: components/JobList/JobListItem.js:40 +#: components/Schedule/ScheduleList/ScheduleListItem.js:40 +#: screens/Job/JobDetail/JobDetail.js:81 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:130 msgid "Workflow Job" msgstr "" -#: components/JobList/JobListItem.jsx:159 -#: components/Workflow/WorkflowNodeHelp.jsx:51 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:15 -#: screens/Job/JobDetail/JobDetail.jsx:136 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:110 -#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/JobList/JobListItem.js:166 +#: components/Workflow/WorkflowNodeHelp.js:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js:15 +#: screens/Job/JobDetail/JobDetail.js:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js:143 #: util/getRelatedResourceDeleteDetails.js:104 msgid "Workflow Job Template" msgstr "" @@ -9535,37 +9104,37 @@ msgstr "" msgid "Workflow Job Templates" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:23 msgid "Workflow Link" msgstr "" -#: components/TemplateList/TemplateList.jsx:203 -#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:100 +#: components/TemplateList/TemplateList.js:208 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js:100 msgid "Workflow Template" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:453 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:453 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:159 msgid "Workflow approved message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:465 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:465 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:168 msgid "Workflow approved message body" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:477 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:477 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:177 msgid "Workflow denied message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:489 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:489 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:186 msgid "Workflow denied message body" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:106 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js:106 msgid "Workflow documentation" msgstr "" @@ -9573,561 +9142,448 @@ msgstr "" msgid "Workflow job templates" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js:24 msgid "Workflow link modal" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js:195 msgid "Workflow node view modal" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:501 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:501 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:195 msgid "Workflow pending message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:513 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:513 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:204 msgid "Workflow pending message body" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:525 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:525 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:213 msgid "Workflow timed out message" msgstr "" -#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:537 -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js:537 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:222 msgid "Workflow timed out message body" msgstr "" -#: screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.js:80 msgid "Write" msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:44 msgid "YAML:" msgstr "" -#: components/Schedule/shared/ScheduleForm.jsx:148 +#: components/Schedule/shared/ScheduleForm.js:148 msgid "Year" msgstr "" -#: components/Search/Search.jsx:259 +#: components/Search/Search.js:259 msgid "Yes" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "" -#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:27 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js:27 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: components/Lookup/MultiCredentialsLookup.jsx:156 +#: components/Lookup/MultiCredentialsLookup.js: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:95 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.js:95 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:152 +#: components/PaginatedTable/ToolbarDeleteButton.js:152 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:147 -#~ msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -#~ msgstr "" - -#: components/DisassociateButton/DisassociateButton.jsx:50 +#: components/DisassociateButton/DisassociateButton.js:50 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.js:87 msgid "" "You may apply a number of possible variables in the\n" "message. For more information, refer to the" msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 -#~ msgid "You may apply a number of possible variables in the message. Refer to the" -#~ msgstr "" - -#: components/AppContainer/AppContainer.jsx:245 -#~ msgid "You will be logged out in {0} seconds due to inactivity." -#~ msgstr "" - -#: screens/Login/Login.jsx:169 +#: screens/Login/Login.js:169 msgid "Your session has expired. Please log in to continue where you left off." msgstr "" -#: components/AppContainer/AppContainer.jsx:126 +#: components/AppContainer/AppContainer.js:126 msgid "Your session is about to expire" msgstr "" -#: components/Workflow/WorkflowTools.jsx:121 +#: components/Workflow/WorkflowTools.js:121 msgid "Zoom In" msgstr "" -#: components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.js:100 msgid "Zoom Out" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:756 -#: screens/Template/shared/WebhookSubForm.jsx:152 +#: screens/Template/shared/JobTemplateForm.js:756 +#: screens/Template/shared/WebhookSubForm.js:152 msgid "a new webhook key will be generated on save." msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:753 -#: screens/Template/shared/WebhookSubForm.jsx:142 +#: screens/Template/shared/JobTemplateForm.js:753 +#: screens/Template/shared/WebhookSubForm.js:142 msgid "a new webhook url will be generated on save." msgstr "" -#: screens/Host/HostGroups/HostGroupItem.jsx:45 -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 -#~ msgid "actions" -#~ msgstr "" +#: screens/Template/Survey/SurveyListItem.js:157 +msgid "actions" +msgstr "" -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:184 -#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:213 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:181 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.js:210 msgid "and click on Update Revision on Launch" msgstr "" -#: screens/ActivityStream/ActivityStreamDescription.jsx:513 +#: screens/ActivityStream/ActivityStreamDescription.js:513 msgid "approved" msgstr "" -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "brand logo" msgstr "" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:278 -#: screens/Template/Survey/SurveyList.jsx:112 +#: components/PaginatedTable/ToolbarDeleteButton.js:278 +#: screens/Template/Survey/SurveyList.js:112 msgid "cancel delete" msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:180 -#~ msgid "capacity adjustment" -#~ msgstr "" - -#: components/AdHocCommands/AdHocDetailsStep.jsx:235 +#: components/AdHocCommands/AdHocDetailsStep.js:235 msgid "command" msgstr "" -#: components/PaginatedTable/ToolbarDeleteButton.jsx:267 -#: screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedTable/ToolbarDeleteButton.js:267 +#: screens/Template/Survey/SurveyList.js:103 msgid "confirm delete" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:113 -#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: components/DisassociateButton/DisassociateButton.js:113 +#: screens/Team/TeamRoles/TeamRolesList.js:220 msgid "confirm disassociate" msgstr "" -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 -#~ msgid "controller instance" -#~ msgstr "" - -#: screens/Project/ProjectList/ProjectListItem.jsx:159 -#~ msgid "copy to clipboard disabled" -#~ msgstr "" - -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:145 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:145 msgid "deletion error" msgstr "" -#: screens/ActivityStream/ActivityStreamDescription.jsx:521 +#: screens/ActivityStream/ActivityStreamDescription.js:521 msgid "denied" msgstr "" -#: components/DisassociateButton/DisassociateButton.jsx:79 +#: components/DisassociateButton/DisassociateButton.js:79 msgid "disassociate" msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:264 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:222 +#: screens/Template/Survey/SurveyQuestionForm.js:264 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:219 msgid "documentation" msgstr "" -#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:107 -#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:120 -#: screens/Host/HostDetail/HostDetail.jsx:114 -#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:98 -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106 -#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:100 -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 -#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:152 -#: screens/Project/ProjectDetail/ProjectDetail.jsx:250 -#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:170 -#: screens/User/UserDetail/UserDetail.jsx:84 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js:103 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js:116 +#: screens/Host/HostDetail/HostDetail.js:106 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js:95 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js:107 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.js:96 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:223 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js:148 +#: screens/Project/ProjectDetail/ProjectDetail.js:246 +#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js:166 +#: screens/User/UserDetail/UserDetail.js:88 msgid "edit" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:123 +#: screens/Template/Survey/SurveyListItem.js:163 +msgid "edit survey" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.js:135 msgid "encrypted" msgstr "" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:45 -#~ msgid "expiration" -#~ msgstr "" - -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 -#~ msgid "for more details." -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:224 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:221 msgid "for more info." msgstr "" -#: screens/Template/Survey/SurveyQuestionForm.jsx:266 +#: screens/Template/Survey/SurveyQuestionForm.js:266 msgid "for more information." msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:169 +#: components/AdHocCommands/AdHocDetailsStep.js:169 msgid "here" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:120 -#: components/AdHocCommands/AdHocDetailsStep.jsx:189 +#: components/AdHocCommands/AdHocDetailsStep.js:120 +#: components/AdHocCommands/AdHocDetailsStep.js:189 msgid "here." msgstr "" -#: components/Lookup/HostFilterLookup.jsx:360 +#: components/Lookup/HostFilterLookup.js:367 msgid "hosts" msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:166 -#~ msgid "instance counts" -#~ msgstr "" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:207 -#~ msgid "instance group used capacity" -#~ msgstr "" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:155 -#~ msgid "instance host name" -#~ msgstr "" - -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:158 -#~ msgid "instance type" -#~ msgstr "" - -#: components/Lookup/HostListItem.jsx:30 -#~ msgid "inventory" -#~ msgstr "" - -#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: screens/Job/JobDetail/JobDetail.jsx:119 -#~ msgid "isolated instance" -#~ msgstr "" - -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.js:24 msgid "items" msgstr "" -#: screens/User/UserList/UserListItem.jsx:44 +#: screens/User/UserList/UserListItem.js:44 msgid "ldap user" msgstr "" -#: screens/User/UserDetail/UserDetail.jsx:71 +#: screens/User/UserDetail/UserDetail.js:72 msgid "login type" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:186 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:183 msgid "min" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:82 +#: screens/Template/Survey/SurveyListItem.js:91 msgid "move down" msgstr "" -#: screens/Template/Survey/SurveyListItem.jsx:71 +#: screens/Template/Survey/SurveyListItem.js:80 msgid "move up" msgstr "" -#: components/Lookup/HostListItem.jsx:23 -#~ msgid "name" -#~ msgstr "" - -#: screens/Template/Survey/MultipleChoiceField.jsx:81 +#: screens/Template/Survey/MultipleChoiceField.js:81 msgid "new choice" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.js:461 msgid "of" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:233 +#: components/AdHocCommands/AdHocDetailsStep.js:233 msgid "option to the" msgstr "" -#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 -#~ msgid "or attributes of the job such as" -#~ msgstr "" - -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.js:25 msgid "page" msgstr "" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.js:26 msgid "pages" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.js:28 msgid "per page" msgstr "" -#: components/LaunchButton/ReLaunchDropDown.jsx:77 -#: components/LaunchButton/ReLaunchDropDown.jsx:99 +#: components/LaunchButton/ReLaunchDropDown.js:77 +#: components/LaunchButton/ReLaunchDropDown.js:99 msgid "relaunch jobs" msgstr "" -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 -#~ msgid "resource name" -#~ msgstr "" - -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 -#~ msgid "resource role" -#~ msgstr "" - -#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 -#~ msgid "resource type" -#~ msgstr "" - -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:41 -#~ msgid "scope" -#~ msgstr "" - -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:200 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js:197 msgid "sec" msgstr "" -#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.js:186 msgid "seconds" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:57 +#: components/AdHocCommands/AdHocDetailsStep.js:57 msgid "select module" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:130 +#: components/AdHocCommands/AdHocDetailsStep.js:130 msgid "select verbosity" msgstr "" -#: screens/User/UserList/UserListItem.jsx:49 +#: screens/User/UserList/UserListItem.js:49 msgid "social login" msgstr "" -#: screens/Template/shared/JobTemplateForm.jsx:347 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:189 +#: screens/Template/shared/JobTemplateForm.js:347 +#: screens/Template/shared/WorkflowJobTemplateForm.js:189 msgid "source control branch" msgstr "" -#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.js:30 msgid "system" msgstr "" -#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 -#~ msgid "team name" -#~ msgstr "" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:519 +#: screens/ActivityStream/ActivityStreamDescription.js:519 msgid "timed out" msgstr "" -#: components/AdHocCommands/AdHocDetailsStep.jsx:213 +#: components/AdHocCommands/AdHocDetailsStep.js:213 msgid "toggle changes" msgstr "" -#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:36 -#~ msgid "token name" -#~ msgstr "" - -#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 -#~ msgid "type" -#~ msgstr "" - -#: screens/ActivityStream/ActivityStreamDescription.jsx:524 +#: screens/ActivityStream/ActivityStreamDescription.js:524 msgid "updated" msgstr "" -#: screens/Template/shared/WebhookSubForm.jsx:191 +#: screens/Template/shared/WebhookSubForm.js:191 msgid "workflow job template webhook key" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:111 msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" msgstr "" -#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:84 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.js:84 msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" msgstr "" -#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:179 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:184 msgid "{0, plural, one {The following Instance Group cannot be deleted} other {The following Instance Groups cannot be deleted}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 +#: screens/Inventory/InventoryList/InventoryList.js:236 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:248 +#: components/JobList/JobList.js:254 msgid "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}" msgstr "" -#: screens/Inventory/InventoryList/InventoryList.jsx:222 -#~ 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:217 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js:216 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:179 +#: screens/Credential/CredentialList/CredentialList.js:178 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.js:170 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.js:187 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:257 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js:275 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:218 +#: screens/Inventory/InventoryList/InventoryList.js:229 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.js:186 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 "" -#: screens/Inventory/InventoryList/InventoryList.jsx:225 -#~ 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:174 +#: screens/Organization/OrganizationList/OrganizationList.js:173 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:235 +#: screens/Project/ProjectList/ProjectList.js:241 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:245 +#: components/TemplateList/TemplateList.js:251 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 "" -#: components/JobList/JobListCancelButton.jsx:72 +#: components/JobList/JobListCancelButton.js:72 msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" msgstr "" -#: components/JobList/JobListCancelButton.jsx:65 -#~ msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" -#~ msgstr "" - -#: components/JobList/JobListCancelButton.jsx:56 +#: components/JobList/JobListCancelButton.js:56 msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" msgstr "" -#: screens/Setting/shared/LoggingTestAlert.jsx:25 -#~ msgid "{0}" -#~ msgstr "" - -#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.js:28 msgid "{0} (deleted)" msgstr "" -#: components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.js:13 msgid "{0} more" msgstr "" -#: screens/Inventory/InventoryList/InventoryListItem.jsx:61 +#: screens/Inventory/InventoryList/InventoryListItem.js:61 msgid "{0} sources with sync failures." msgstr "" -#: screens/Setting/shared/LoggingTestAlert.jsx:24 -#~ msgid "{0}: {1}" -#~ msgstr "" - -#: components/AppContainer/AppContainer.jsx:55 +#: components/AppContainer/AppContainer.js:55 msgid "{brandName} logo" msgstr "" -#: components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.js:23 msgid "{dateStr} by <0>{username}" msgstr "" -#: screens/InstanceGroup/Instances/InstanceListItem.jsx:130 +#: screens/InstanceGroup/Instances/InstanceListItem.js:130 msgid "{forks, plural, one {# fork} other {# forks}}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.js:188 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:186 +#: components/Schedule/shared/FrequencyDetailSubform.js:186 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:184 +#: components/Schedule/shared/FrequencyDetailSubform.js:184 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.js:192 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +#: components/Schedule/shared/FrequencyDetailSubform.js:190 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "" -#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +#: components/Schedule/shared/FrequencyDetailSubform.js:194 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "" -#: components/Schedule/shared/DateTimePicker.jsx:49 +#: components/Schedule/shared/DateTimePicker.js:49 msgid "{label} date" msgstr "" -#: components/Schedule/shared/DateTimePicker.jsx:57 +#: components/Schedule/shared/DateTimePicker.js:57 msgid "{label} time" msgstr "" -#: components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.js:43 msgid "{minutes} min {seconds} sec" msgstr "" -#: components/JobList/JobListCancelButton.jsx:106 +#: components/JobList/JobListCancelButton.js:106 msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "" -#: components/JobList/JobListCancelButton.jsx:167 +#: components/JobList/JobListCancelButton.js:167 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "" -#: components/JobList/JobListCancelButton.jsx:91 +#: components/JobList/JobListCancelButton.js:91 msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" -#: components/DetailList/NumberSinceDetail.jsx:19 +#: components/DetailList/NumberSinceDetail.js:19 msgid "{number} since {dateStr}" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.js:79 msgid "{pluralizedItemName} List" msgstr "" -#: components/AppContainer/AppContainer.jsx:150 +#: components/AppContainer/AppContainer.js:150 msgid "{sessionCountdown, plural, one {You will be logged out in # second due to inactivity} other {You will be logged out in # seconds due to inactivity}}" msgstr ""