set_language_properties
Configure language-specific properties in LimeSurvey by specifying a language ID and desired settings to customize survey localization.
Instructions
Set LimeSurvey language properties.
Args:
lid: The language ID.
properties: The properties to set.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lid | Yes | ||
properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"lid": {
"title": "Lid",
"type": "string"
},
"properties": {
"additionalProperties": true,
"title": "Properties",
"type": "object"
}
},
"required": [
"lid",
"properties"
],
"title": "set_language_propertiesArguments",
"type": "object"
}