localizationUpdate
Update existing translation content by specifying file path, key, and new text for supported languages like zh-TW, zh-CN, and en within the MCP server environment.
Instructions
更新現有翻譯項目的內容
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | ||
| key | Yes | ||
| updateData | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
},
"key": {
"type": "string"
},
"updateData": {
"additionalProperties": true,
"properties": {
"en": {
"type": "string"
},
"zh-CN": {
"type": "string"
},
"zh-TW": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"filePath",
"key",
"updateData"
],
"type": "object"
}