I am using ngx-translate lib to support I18N in my angular app. Can anyone help me to mark the below html snippet for translation?
<span *ngIf="Days < 0 && !shortSentence">
Follow-up is <span [class.font-bold]="highlightContent">{{ InDays | positiveNumber }} days</span> past due
</span>
I want to mark only the text content within span tag. How can I make it as parametrized translations?
Any help will be appreciated.
Thanks in advance.