Unified Timeline - Fix - Docs for Event renderers (#187457)

## Summary

This PR incorporates docs feedback as per :
https://github.com/elastic/security-docs/issues/5341#issuecomment-2205602709
This commit is contained in:
Jatin Kathuria 2024-07-04 00:51:49 +02:00 committed by GitHub
parent 0ec428bf9c
commit 18c5f83e64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -10,13 +10,13 @@ import { i18n } from '@kbn/i18n';
export const EVENT_RENDERERS_SWITCH = i18n.translate(
'xpack.securitySolution.timeline.eventRenderersSwitch.title',
{
defaultMessage: 'Row Renderers',
defaultMessage: 'Event renderers',
}
);
export const EVENT_RENDERERS_SWITCH_WARNING = i18n.translate(
'xpack.securitySolution.timeline.eventRenderersSwitch.warning',
{
defaultMessage: 'Enabling Row Renderers may impact table performance.',
defaultMessage: 'Enabling event renderers might impact table performance.',
}
);

View file

@ -10,14 +10,14 @@ import { i18n } from '@kbn/i18n';
export const EVENT_RENDERERS_TITLE = i18n.translate(
'xpack.securitySolution.customizeEventRenderers.eventRenderersTitle',
{
defaultMessage: 'Event Renderers',
defaultMessage: 'Event renderers',
}
);
export const CUSTOMIZE_EVENT_RENDERERS_TITLE = i18n.translate(
'xpack.securitySolution.customizeEventRenderers.customizeEventRenderersTitle',
{
defaultMessage: 'Customize Event Renderers',
defaultMessage: 'Customize event renderers',
}
);
@ -25,7 +25,7 @@ export const CUSTOMIZE_EVENT_RENDERERS_DESCRIPTION = i18n.translate(
'xpack.securitySolution.customizeEventRenderers.customizeEventRenderersDescription',
{
defaultMessage:
'Event Renderers automatically convey the most relevant details in an event to reveal its story',
'Event renderers automatically convey the most relevant details in an event to reveal its story',
}
);