localizationDelete
Remove translation entries for a specific key from a specified file in the GonMCPtool MCP server for efficient localization management.
Instructions
刪除指定Key的翻譯項目
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | ||
| key | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
},
"key": {
"type": "string"
}
},
"required": [
"filePath",
"key"
],
"type": "object"
}