html - Angular i18n localization of label containing interpolation -


in template have bunch of cards, each has name , button. button title should contain name. simplified:

<md-card> <md-card-header>     <md-card-title>{{name}}</md-card-title> </md-card-header> <md-card-footer>         <button             title="actions {{name}}"             i18-title="show actions cards|button tooltip"         </button>     </div> </md-card-footer> 

my understanding, interpolation part {{name}} lost after localization run. how tackle case?


Comments

Popular posts from this blog

javascript - WinJS appendTextAsync producing scheduler errors -

minify - Minimizing css files -

Sockets with kotlin -