function renderText()

in js/src/renderButtons.ts [169:174]


function renderText(div: HTMLDivElement) {
    const span = document.createElement('span');
    const locale = div.getAttribute(attributeLocale) || 'en';
    span.textContent = getLocalizedString(locale);
    div.appendChild(span);
}