localizationFindMissing
Identify missing translations for a specific language in localization files to ensure consistent multilingual support and improve language coverage.
Instructions
查找有Key值但缺少特定語言翻譯的項目
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | ||
| language | Yes | ||
| limit | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
},
"language": {
"type": "string"
},
"limit": {
"type": "number"
}
},
"required": [
"filePath",
"language"
],
"type": "object"
}