From 49a2712f3ce07087fd19e9fdd902a406dbcb2d1c Mon Sep 17 00:00:00 2001 From: Kevin Logan <56395104+kevinlog@users.noreply.github.com> Date: Mon, 19 Jul 2021 18:35:42 -0400 Subject: [PATCH] [Security Solution] update text for Isolation action submissions (#105956) (#106156) # Conflicts: # x-pack/plugins/cases/public/components/user_action_tree/user_action_host_isolation_comment_event.test.tsx --- .../components/user_action_tree/translations.ts | 4 ++-- .../pages/endpoint_hosts/view/translations.ts | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/x-pack/plugins/cases/public/components/user_action_tree/translations.ts b/x-pack/plugins/cases/public/components/user_action_tree/translations.ts index 54738e29060f3d..40d6fc5bc2ad80 100644 --- a/x-pack/plugins/cases/public/components/user_action_tree/translations.ts +++ b/x-pack/plugins/cases/public/components/user_action_tree/translations.ts @@ -58,11 +58,11 @@ export const UNKNOWN_RULE = i18n.translate('xpack.cases.caseView.unknownRule.lab }); export const ISOLATED_HOST = i18n.translate('xpack.cases.caseView.isolatedHost', { - defaultMessage: 'isolated host', + defaultMessage: 'submitted isolate request on host', }); export const RELEASED_HOST = i18n.translate('xpack.cases.caseView.releasedHost', { - defaultMessage: 'released host', + defaultMessage: 'submitted release request on host', }); export const OTHER_ENDPOINTS = (endpoints: number): string => diff --git a/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts index 89ffd2d23807ef..569456caca4583 100644 --- a/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts +++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts @@ -40,13 +40,13 @@ export const ACTIVITY_LOG = { isolatedAction: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.action.isolated', { - defaultMessage: 'isolated host', + defaultMessage: 'submitted request: Isolate host', } ), unisolatedAction: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.action.unisolated', { - defaultMessage: 'released host', + defaultMessage: 'submitted request: Release host', } ), }, @@ -54,25 +54,25 @@ export const ACTIVITY_LOG = { isolationSuccessful: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.isolationSuccessful', { - defaultMessage: 'host isolation successful', + defaultMessage: 'Host isolation request received by Endpoint', } ), isolationFailed: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.isolationFailed', { - defaultMessage: 'host isolation failed', + defaultMessage: 'Host isolation request received by Endpoint with errors', } ), unisolationSuccessful: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.unisolationSuccessful', { - defaultMessage: 'host release successful', + defaultMessage: 'Release host request received by Endpoint', } ), unisolationFailed: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.unisolationFailed', { - defaultMessage: 'host release failed', + defaultMessage: 'Release host request received by Endpoint with errors', } ), },