From 79430d63a2ddc70ea310c20aef730422b374181b Mon Sep 17 00:00:00 2001 From: Ashokaditya Date: Tue, 4 Apr 2023 13:59:26 +0200 Subject: [PATCH] update translations --- .../execute_action_host_response_output.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/components/endpoint_execute_action/execute_action_host_response_output.tsx b/x-pack/plugins/security_solution/public/management/components/endpoint_execute_action/execute_action_host_response_output.tsx index 898e12e45f30a..7b08cda48bf46 100644 --- a/x-pack/plugins/security_solution/public/management/components/endpoint_execute_action/execute_action_host_response_output.tsx +++ b/x-pack/plugins/security_solution/public/management/components/endpoint_execute_action/execute_action_host_response_output.tsx @@ -55,19 +55,19 @@ const ACCORDION_BUTTON_TEXT = Object.freeze({ const SHELL_INFO = Object.freeze({ shell: i18n.translate('xpack.securitySolution.responseActionExecuteAccordion.shellInformation', { - defaultMessage: 'Shell: ', + defaultMessage: 'Shell', }), returnCode: i18n.translate( 'xpack.securitySolution.responseActionExecuteAccordion.shellReturnCode', { - defaultMessage: 'Return code: ', + defaultMessage: 'Return code', } ), currentDir: i18n.translate( 'xpack.securitySolution.responseActionExecuteAccordion.currentWorkingDirectory', { - defaultMessage: 'Current working directory: ', + defaultMessage: 'Current working directory', } ), }); @@ -84,7 +84,10 @@ interface ShellInfoContentProps { } const ShellInfoContent = memo(({ content, textSize, title }) => ( - {title} + + {title} + {': '} + {content} ));