GonMCPtool

localizationAdd

Add new translation entries to localization projects. Specify file paths and provide translations for multiple languages (en, zh-TW, zh-CN) to enhance multilingual support.

Instructions

新增一個完整的翻譯項目

Input Schema

NameRequiredDescriptionDefault
entryYes
filePathYes

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" }
ID: 8xcb3w59pl