Using angular i18n inside *ngFor loop with angular 5
问题 I would like to use dynamic translations inside a ngFor-Loop in template like this: <mat-card *ngFor="let user of usersList"> <mat-card-title> <span>{{user.name}}</span> </mat-card-title> <mat-card-content> <!--This is the enum i would like to translate dynamic --> <span i18n="Role@@role">{{user.role}}</span> </mat-card-content> </mat-card> Is there a way with the current on-board tools of angular 5 i18e (internationalization) to dynamically translate this enum value? As I read, in Angular 6