localizationAdd
Add a complete localization entry with translations for zh-TW, zh-CN, and en into a specified file path using this tool in the GonMCPtool MCP server.
Instructions
新增一個完整的翻譯項目
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entry | Yes | ||
| filePath | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entry": {
"additionalProperties": true,
"properties": {
"Key": {
"type": "string"
},
"en": {
"type": "string"
},
"zh-CN": {
"type": "string"
},
"zh-TW": {
"type": "string"
}
},
"required": [
"Key",
"zh-TW",
"zh-CN",
"en"
],
"type": "object"
},
"filePath": {
"type": "string"
}
},
"required": [
"filePath",
"entry"
],
"type": "object"
}