[Security Solution] update protection names in Policy response and Policy locked cards (#113000)

This commit is contained in:
Kevin Logan 2021-09-23 15:05:35 -04:00 committed by GitHub
parent bc1c6dca47
commit 44ebc8b8af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 2 deletions

View file

@ -243,6 +243,18 @@ responseMap.set(
defaultMessage: 'Events',
})
);
responseMap.set(
'memory_protection',
i18n.translate('xpack.securitySolution.endpoint.details.policyResponse.memory_protection', {
defaultMessage: 'Memory Threat',
})
);
responseMap.set(
'behavior_protection',
i18n.translate('xpack.securitySolution.endpoint.details.policyResponse.behavior_protection', {
defaultMessage: 'Malicious Behavior',
})
);
/**
* Maps a server provided value to corresponding i18n'd string.

View file

@ -29,14 +29,14 @@ const LOCKED_CARD_RAMSOMWARE_TITLE = i18n.translate(
const LOCKED_CARD_MEMORY_TITLE = i18n.translate(
'xpack.securitySolution.endpoint.policy.details.memory',
{
defaultMessage: 'Memory',
defaultMessage: 'Memory Threat',
}
);
const LOCKED_CARD_BEHAVIOR_TITLE = i18n.translate(
'xpack.securitySolution.endpoint.policy.details.behavior',
{
defaultMessage: 'Behavior',
defaultMessage: 'Malicious Behavior',
}
);