I have an Enum like this
export enum LogEvent
{
All = 0,
Created = 1,
Modified = 2,
Delete = 3
}
I want to convert these enum keys with i18n translation and bind them to MatSelection. The selected value should be the number.
Please help me with this.