Multi language form

I’m using jsonform component and i want to create a multi-language form, can anyone give any example how to create a multi-language form.

{
“schema”: {
“field”: {
“type”: “string”,
“title”: “{{Hello}}”
}
},
“name”: “english”,
“form”: [
{
“key”: “field”
},
{
“type”: “submit”,
“title”: “Submit”
}
],
“tpldata”: {
“Hello”: “Hello”
},
“name”: “dutch”,
“form”: [
{
“key”: “field”
},
{
“type”: “submit”,
“title”: “Submit”
}
],
“tpldata”: {
“Hello”: “Hallo”
}
}

Hi @nayan,

JSON Form’s i18n support is quite flexible. Your translator is not forced to only return values in a single language. Depending on the key, context etc. you may return whatever you want to see in the UI.

Note that the posted object is not a JSON Schema, so JSON Forms will not produce a form for it.