Good morning,
I'm using Angular 10 and i18n package to translate my app. I have already made all the localization for the template files and is working perfectly on the prod server.
The problem is that I'm trying to localize as well strings on the ts file but I am not able to achieve this...
What I have now is this on my ts file:
$localize`@@errorMessage:Error`;
$localize`@@startDate:The end date can not be before the start date`;
The problem is how can I include thisin the xlf file to translate it? I have seen that you can include manually into the xlf file and then you can translate it, but doesn't work
Thanks!