validate_translations
Verify translation quality and consistency across specified locales by performing checks for completeness, formatting, placeholders, and more.
Instructions
Validate translation quality and consistency
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checks | No | Types of validation checks to perform | |
target_locales | No | Locales to validate |
Input Schema (JSON Schema)
{
"properties": {
"checks": {
"description": "Types of validation checks to perform",
"items": {
"enum": [
"consistency",
"completeness",
"formatting",
"placeholders"
],
"type": "string"
},
"type": "array"
},
"target_locales": {
"description": "Locales to validate",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}