findTranslationsForKey
Locate all translations for a specific key across languages and components in a project on Weblate MCP Server. Simplify translation tracking and management.
Instructions
Find all translations for a specific key across all components and languages in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | The exact translation key to find | |
projectSlug | Yes | The slug of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"description": "The exact translation key to find",
"type": "string"
},
"projectSlug": {
"description": "The slug of the project",
"type": "string"
}
},
"required": [
"projectSlug",
"key"
],
"type": "object"
}