Preventing Theme App Extension Block Settings from Being Translated

I’m building a theme app extension with a block (blocks/market_selector.liquid), and I need its text settings not to be translated/localized by Shopify Markets or translation apps.

Example scheme (simplified):

{% schema %}
{
“name”: “Geo Market Selector”,
“settings”: [
{
“type”: “text”,
“id”: “modal_title”,
“label”: “Title”,
“default”: “Select Your Region”
},
{
“type”: “text”,
“id”: “classic_position_selector”,
“label”: “Target Element Selector”,
“default”: “.banner__box”
}
]
}
{% endschema %}