add_language
Add a supported language to a specific LimeSurvey survey by providing the survey ID and language code for expanded multilingual functionality.
Instructions
Add a language to a LimeSurvey survey.
Args:
sid: The survey ID.
language: The language code.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"title": "Language",
"type": "string"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"language"
],
"title": "add_languageArguments",
"type": "object"
}