Custom MT
To open Custom MT:
From Launcher: Menubar -> Translator -> Double Click on the MT Engine
From Settings: Settings -> MT Engines -> Click on the MT Engine

Configuration
Write the Custom MT code using the JSON object structure format
configVersion:
numbername:
stringtitle:
stringdescription:
stringversion:
stringicon:
objectdefault:
string
schema:
array[]formBuilder:
array[]lang:
objectsource:
array[]target:
array[]
request:
objectcomponents:
object
{
"configVersion": 3,
"name": "openai",
"title": "OpenAI",
"description": "Translate natural language text",
"version": "1.0",
"icon": {
"default": "openai.png"
},
"schema": [],
"formBuilder": [],
"lang": {
"source": [
{ "name": "Japanese", "value": "japanese"}
],
"target": [
{"name": "English", "value": "english"}
]
},
"request": {
"method": "http_post"
},
"components": {}
}