Skip to content

Commit

Permalink
fix i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierM committed Jan 14, 2020
1 parent 91ff133 commit 87ace1e
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,13 @@ export const ALL_EVENT = i18n.translate('xpack.siem.timeline.searchOrFilter.even
defaultMessage: 'All events',
});

export const RAW_EVENT = i18n.translate('xpack.siem.timeline.searchOrFilter.eventTypeAllEvent', {
export const RAW_EVENT = i18n.translate('xpack.siem.timeline.searchOrFilter.eventTypeRawEvent', {
defaultMessage: 'Raw events',
});

export const SIGNAL_EVENT = i18n.translate('xpack.siem.timeline.searchOrFilter.eventTypeAllEvent', {
defaultMessage: 'Signal events',
});
export const SIGNAL_EVENT = i18n.translate(
'xpack.siem.timeline.searchOrFilter.eventTypeSignalEvent',
{
defaultMessage: 'Signal events',
}
);

0 comments on commit 87ace1e

Please sign in to comment.