Is it possible to use variables in an angular template i18n string?
In TypeScript I can use template string, eg:
public welcomeMessage = $localize`:@@test.welcome: Hello ${this.name}:user_name:! How's your day?`;
Can I use something similar in html templates? eg
<p i18n="@@test.welcome">Hello {{name}}:user_name:! How's your day?</p>
Hope you get my point.