localizationFindLongValues
Identify and extract translation entries exceeding a specified character length threshold in localization files for efficient review and optimization.
Instructions
查找超過特定字數的翻譯項目
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | ||
| language | No | ||
| limit | No | ||
| threshold | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
},
"language": {
"type": "string"
},
"limit": {
"type": "number"
},
"threshold": {
"type": "number"
}
},
"required": [
"filePath",
"threshold"
],
"type": "object"
}