localizationExportJson
Export translations for a specific language into a JSON format, enabling efficient localization management for projects using the GonMCPtool MCP server.
Instructions
將特定語言的翻譯導出為JSON格式
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | ||
language | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
},
"language": {
"type": "string"
}
},
"required": [
"filePath",
"language"
],
"type": "object"
}