
I don't under stand why to use the data-i18n-vars tag, described over on: <a href="https://wiki.roll20.net/Character_Sheet_Translation#Variable_Replacement" rel="nofollow">https://wiki.roll20.net/Character_Sheet_Translation#Variable_Replacement</a> In theory, it allows you to create an element with some text to translate and some text that isn't translated. The most obvious example I can thingk of would be an attribute name, which isn't translated. That's probably why this was created. So here are two examples. How would you do this: <span data-i18n="description-strength">The @{strength} attribute is used for punching things</span> I want everything shown in the span to be translated except the @Pstrength} attribute part. Here's the same example, but using popup text. <input type="number" title="use the @{strength} attribute for melee attacks" data-i18n-title="description-strength" name="attr_strength" value="10"> I wouldnt use both iof those in the same sheet, becuase they both create the description-strength key and include different text. But indulge me - how would you create translations uses i18n-vars ?