Multilingual JSON files as source

Hi,

I have been given a set of JSON files that contain multiple languages. Sample chunk from file is:

"BusinessTerms": [
{
"Code": "BG-10",
"TermName": "English term",
"Definition": "blah blah.",
"Description": "blah blah.",
"Translations": [
{
"Language": "no",
"TermName": "Norwegian term"
},
{
"Language": "se",
"TermName": "Swedish term"
}
]
}

]

Can I assume that I will need to strip out the translated languages before processing the file? If I load as-is using the JSON parser, it treats all strings as source strings, regardless of their actual language.

Best Regards

Mark

Parents Reply Children
No Data