I´m using Angular 5 with ngx-translate for i18n. Now I´ve the following issue and found no solution so far:
Template:
Please <a routerlink="/signup">Signup now</a>!
Now this string should be translated via the translation json files. But routerlink is not parsed:
Json language file:
"signin": "Please <a routerlink="/signup">Signup now</a>!"
I found a workaround by splitting the sentence in three parts, but that´s not a convenient method cause it might happen that three parts doesn´t match the sentence structure (depending on the language).
Is there another way of resolving this issue?
Thanks & best, Michael