localizationSearch
Search for specific text within translation items by specifying file path, text, language, and limit. Part of GonMCPtool for managing localization tasks.
Instructions
搜尋包含特定文字的翻譯項目
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | ||
| language | No | ||
| limit | No | ||
| searchText | 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"
},
"searchText": {
"type": "string"
}
},
"required": [
"filePath",
"searchText"
],
"type": "object"
}