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..2d8570b4bdf7f5 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: 'isolate submitted on host', }); export const RELEASED_HOST = i18n.translate('xpack.cases.caseView.releasedHost', { - defaultMessage: 'released host', + defaultMessage: 'release submitted 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 7759935aa840af..3f330896b0806f 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 @@ -54,13 +54,13 @@ export const ACTIVITY_LOG = { isolatedAction: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.action.isolated', { - defaultMessage: 'isolated host', + defaultMessage: 'isolate host submitted', } ), unisolatedAction: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.action.unisolated', { - defaultMessage: 'released host', + defaultMessage: 'release host submitted', } ), }, @@ -68,25 +68,25 @@ export const ACTIVITY_LOG = { isolationSuccessful: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.isolationSuccessful', { - defaultMessage: 'host isolation successful', + defaultMessage: 'host isolation acknowledged', } ), isolationFailed: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.isolationFailed', { - defaultMessage: 'host isolation failed', + defaultMessage: 'host isolation acknowledged with errors', } ), unisolationSuccessful: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.unisolationSuccessful', { - defaultMessage: 'host release successful', + defaultMessage: 'host release acknowledged', } ), unisolationFailed: i18n.translate( 'xpack.securitySolution.endpointDetails.activityLog.logEntry.response.unisolationFailed', { - defaultMessage: 'host release failed', + defaultMessage: 'host release acknowledged with errors', } ), },