svghmi/widget_list.ysl2
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 21 Jan 2021 05:04:23 +0100
branchsvghmi
changeset 3113 18133b90196e
parent 3031 440d74319a74
child 3175 b2ba6eeb61ec
permissions -rw-r--r--
SVGHMI: i18n: now loads PO filesand match translation against catalog. Refactored a bit to move i18n related code in i18n.py
// widget_list.ysl2

template "widget[@type='List']", mode="widget_defs" {
    param "hmi_element";
    |     items: {
    foreach "$hmi_element/*[@inkscape:label]" {
    |         «@inkscape:label»: "«@id»",
    }
    |     },
}

template "widget[@type='TextStyleList']", mode="widget_defs" {
    param "hmi_element";
    |     styles: {
    foreach "$hmi_element/*[@inkscape:label]" {
        const "style", "func:refered_elements(.)[self::svg:text]/@style";
    |         «@inkscape:label»: "«$style»",
    }
    |     },
}