Is it possible to instruct aurelia-i18n to skip translating template when the key is missing?
I’d like the actual innerHtml of an element to act as a fallback value.
let’s assume I have a following template
<h5 t="view1.hello">Hello!</h5>
when there’s no view1.hello
key in translations, it renders
view1.hello
while I’d like it to be still “Hello1” and get a warning in a console.
this would be useful when you’re introducing i18n to an existing app with a lot of templates to translate…