I'd like to use React-Intl library, to i18n our app. Probably we'll use json format from weblate, and there is a main question. Can I use couple translation keys into one single string?
Dont get it? No problem, there is an example.
{
"test1": "ABC",
"test2": "CBA",
"result": "test {test1} <--- (or any different notation)"
}
// The output for result should be: "test ABC"