root.localizationInfo.additionalLanguages object

An array of objects, each with the following properties to specify additional language translations.

Properties that reference this object type:

Syntax

{
  "languageTag": "{string}",
  "file": "{string}"
}

Properties

languageTag

The language tag of the strings in the provided file.

Type
string

Required

Constraints

Supported values
The value must be a language tag, like en-us.

file

A relative file path to the .json file that contains the translated strings.

Type
string

Required

Constraints
Maximum string length: 2048.

Supported values

Examples

{
    "localizationInfo": {
        "additionalLanguages": [
            {
                "languageTag": "es",
                "file": "es.json"
            }
        ]
    }
}