I am not sure how to do a translation for a dynamic variable in my app.
Currently, I have the report descriptions in a static json file. I am looping through the content of that and using string interpolation in the HTML file. Is there a way to translate the interpolated string in @angular/localize without using a select ICU expression?
<ng-container style="display: none;" *ngFor="let report of reports">
<tr>
<td width="80%" class="colThree" i18n="reportDesc">
{{report.ReportDescription}} //need translate
</td>
</tr>
</ng-container>