I use ember-i18n to handle multiples langages in my project, and I need to insert a link inside a translation (with interpolation).
Any idea ?
I use ember-i18n to handle multiples langages in my project, and I need to insert a link inside a translation (with interpolation).
Any idea ?
I face a similar problem recently and this is what I did:
Translation file (en.json) :
In the respective template/hbs file:
html-safe is a helper provided by ember-cli-string-helpers add on.
Response from @jamesarosen on Github :
But you can use ember-href-to addon to generate URLs.
In JavaScript:
Or in Handlebars (you'll need an htmlSafe helper):