Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This method translates files using MT Hivesubmits one or more files for translation using the MT Hive service.

Please note that the file or files need to be uploaded first. Only then would you call the present method. See below for details. 

URL

(POST) /api/apps/mthive/translate/files

...

files

Mandatory. A list of the previously uploaded files that you submit for translation.

Each file is listed with its file token and the file format ID to use.

Example:

Code Block
[
  {
    "token": "3e896bb7812d48e780a119adf39c6dd0",
    "parserId": 1235
  },
  {
    "token": "3e896bb7812d48e780a119adf39c6dd0",
    "parserId": 231
  }
]

See below on how to upload files and obtain the file tokens.

object[], Mandatory
src

The source language code. Make sure to only use source languages according to the MTHive configuration.

string, Mandatory
trgMandatory. The target language code. Make sure to only use target languages according to the MT Hive configuration.string, Mandatory
profileOptionIdx

The option index for the selected Mt Hive configuration (Zero-based index).

MT Hive lets you specify multiple profiles, see "Settings" > "MT Hive" (see Administration of MT Hive)

int, Mandatory

FILES AND CONFIGURATIONS

...