
I'm working on a character sheet, and I want to add some pretty simple information to the roll when using healing abilities to display how much HP is restored. At present, I've got this: Restores <span class="healing-number">{{healing}}</span> HP 'healing' is passed in as an argument to the roll, and the resulting string says "Restores 45 HP", with the 45 in green due to definitions in the CSS file. This all works perfectly fine, but before I submit the sheet to the github, I want to get everything translation-friendly. So, I did this: <span data-i18n="template-restores-hp">Restores <span class="healing-number">{{healing}}</span> HP</span>
...
{ "template-restores-hp": "Restores <span class=\"sheet-healing-number\">{{healing}}</span> HP" } And when I run this, it says "Restores {{healing}} HP". Is there something special I have to do in order to communicate a roll template parameter into a translated string? The only alternative I can think of is having a 'template-restores-hp-before' key with value 'Restores ' and a 'template-restores-hp-after' key with value ' HP', but that just seems messy. There was something on the wiki about "^{ [key] }" notation, but the explanation was difficult to parse, so I'm not sure if that applies here or not.