The framework supports a mechanism where language variables are included in HTML in curly brackets such as {SetMarket}, and Javascript can then use
For example, partial HTML:
<div>
<div class="SectionHeader">{MarketList}</div>
<button title="{SetMarket}">{Market}</button>
etc.
Widget code can then automatically translate all these variables using
Framework.OnLoad = function() {
this.Translation.TranslateDOM();
… and other initialisation actions …
};
The