Hello,
I’m adding an app section and using the “locales” section for translating the text content in the section as described in https://help.shopify.com/en/api/guides/modifying-online-store/app-sections#appsectionschema.
For example if my app section was the following
{{ "label" | t }}
{% schema %}
{
"name": {
"en": "My Section Title"
},
"locales": {
"en": {
"label": "My Section Label"
}
}
}
{% endschema %}
The app section displays “Translation Missing: en.label” instead of “My Section Label”
Am I doing something wrong or is this in fact broken?