diff --git a/translate/examples.json b/translate/examples.json index f5f0f75..6e3d493 100644 --- a/translate/examples.json +++ b/translate/examples.json @@ -1,32 +1,22 @@ { "text": [ { - "title": "Translate String", + "title": "Translate Text", "run_check": false, "description": "Google Basic Edition Translation", "request": { - "contents": [ - "pen", - "pencil" - ], + "content": "hello", "model": "nmt", "format": "text", "source": "en", - "target": "zh" + "target": "fr" }, "response": { - "translations": [ - { - "text": "钢笔", + "translation": { + "text": "Bonjour", "source": "und", "model": "nmt" - }, - { - "text": "铅笔", - "source": "und", - "model": "nmt" - } - ] + } } } ]