I am applying translation on the templates and using "translate" directive for it like so:
<span translate>Hello {{name}}!</span>`
In separate de.json file for German language I have translation key-value pairs like {"Hello {{name}}!": "Hallo {{name}}!"}.
In runtime my "translate" directive suppose to replace content inside the "span" to "Hallo {{name}}!" and then AngularJS needs to interpolate template string.
Unfortunately today its working opposite way: 1st AngJS interpolates and then my directive applied.
Question: is there way in AngJS to setup my directive to be applied BEFORE AngularJs runs interpolation?