We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for multiple languages on labels and hints of a webform. The JSON below shows the general structure for these kinds of forms:
{ "default_language":"default", "id_string":"multiple_language_survey", "children":[ { "name":"name", "hint":{ "French":"Indiquez les Nom et Pr\u00e9nom", "English":"Enter name" }, "bind":{ "required":"yes" }, "label":{ "French":"Quelle est votre nom?", "English":"Whats your name?" }, "type":"text" }, { "name":"age", "hint":{ "French":"Indiquez l'\u00e2ge", "English":"Enter age" }, "bind":{ "required":"yes", "constraint":". <= 150" }, "label":{ "French":"Quel \u00e2ge avez-vous?", "English":"How old are you?" }, "type":"integer" }, { "control":{ "bodyless":true }, "children":[ { "name":"instanceID", "bind":{ "readonly":"true()", "calculate":"concat('uuid:', uuid())" }, "type":"calculate" } ], "name":"meta", "type":"group" } ], "type":"survey", "name":"multiple_language_survey", "sms_keyword":"multiple_language_survey", "title":"multiple_language_survey" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support for multiple languages on labels and hints of a webform. The JSON below shows the general structure for these kinds of forms:
The text was updated successfully, but these errors were encountered: