getLanguageStatistics
Generate language-specific statistics across all translation projects in Weblate MCP Server by providing the target language code for comprehensive analysis.
Instructions
Get statistics for a specific language across all projects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
languageCode | Yes | The language code (e.g., en, es, fr) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"languageCode": {
"description": "The language code (e.g., en, es, fr)",
"type": "string"
}
},
"required": [
"languageCode"
],
"type": "object"
}