@plain-lifeguard-16679 @freezing-elephant-85019 @bumpy-butcher-41910 @fresh-fireman-491 anyone - Is it possible to prevent the translation agent from translating the content in a specific node/card/variable?
I have a list of buttons:
const languages = [
{ label: "Deutsch 🇩🇪 (de)", value: "de" },
{ label: "English 🇺🇸 (en)", value: "en" },
{ label: "العربية 🇸🇦 (ar)", value: "ar" },
{ label: "বাংলা 🇧🇩 (bn)", value: "bn" },
{ label: "中文 🇨🇳 (zh)", value: "zh" },
{ label: "Nederlands 🇳🇱 (nl)", value: "nl" },
{ label: "Français 🇫🇷 (fr)", value: "fr" },
{ label: "हिन्दी 🇮🇳 (hi)", value: "hi" },
{ label: "Italiano 🇮🇹 (it)", value: "it" },
{ label: "日本語 🇯🇵 (ja)", value: "ja" },
{ label: "한국어 🇰🇷 (ko)", value: "ko" },
{ label: "Polski 🇵🇱 (pl)", value: "pl" },
{ label: "Português 🇵🇹 (pt)", value: "pt" },
{ label: "Русский 🇷🇺 (ru)", value: "ru" },
{ label: "Español 🇪🇸 (es)", value: "es" },
{ label: "Türkçe 🇹🇷 (tr)", value: "tr" }
];
and would like to keep them in the original language, but whenever I use them in a single-choice card, they get translated back to English. What is more, I want to prevent some cards from being translated where I don't want them to.
I waste $ on translations that should not be translated.
How to configure this?