Translated String
The Translated String resource type is used for strings that can be translated into multiple languages, such as menu item name. A translated string contains key value pairs consisting of the language's culture key and the text that is used by the system when that language is active.
Example:
{
"en-US": "coffee",
"es-ES": "cafe",
"lt-LT": "kavos"
}
However, in some unique cases, where a multiple languages use the same culture code, the key value pair needs to be represented as an array of values wherein each value needs to be identified with the language object number along with the translated value like below.
Example:
{
"en-US":[
{ "objectNum":1, "text": "coffee" } ,
{ "objectNum":2, "text": "coffees" }
],
"fr-FR": [
{ "objectNum":4, "text": "cafe" } ],
"lt-LT": [
{ "objectNum":4, "text": "kavos" }
]
}