Upload a file and have it word counted and pre-translated. Then get back the translated file and word count details.
This method does not require a project.
In most cases, the use of MT Hive should be preferred. MT Hive integrates with the online user interface where translated files can be downloaded and sent into post editing.
URL
(POST) /api/apps/tools/translatefiles/translate
PARAMETERS
The body must contain a JSON object with these properties:
Original file | ||
fileToken | The token that references the original file to process. Use media/upload to upload your file and to obtain a token. | string, Mandatory |
src | Source locale. This is the locale of the original file. | string, Mandatory |
trg | Target locale. This is the locale into which to translate. | string, Mandatory |
filterId | Optional file format configuration ID. This lets you specifically define which filter to apply to extract content. If not set, then the system will automatically choose a matching configuration among all those configured online at Settings > File formats. | int?, Optional |
Pre-translation and word count | ||
wordcountProfileId | Optional word count profile to use. The profile defines how to leverage memories, how to pre-translate from memories, whether to use MT and more. If not set, then the system selects the alphabetically first word count profile configured online at Settings > Word count profiles. | int?, Optional |
resourceIds | Optional list of translation/project memories or term bases to use for leveraging (as well as pre-translation). If not set, then the system will only pre-translate with MT (if a system is enabled in the word count profile) | int[]?, Optional |
mt | Optional. Default is true if not specified. Set to true to disable use of MT (e.g. if enabled in the word count profile). | bool?, Optional |
copySourceToTarget | Optional. Default is true if not specified.
Avoid use of false with binary files such as Microsoft Word, Excel, Powerpoint, InDesign etc. The system will otherwise very likely fail to build valid translated files. | bool?, Optional |
Results | ||
saveTranslatedFile | Optional. Default is true if not specified. If true then the results will contain a file reference to download the translated file. Use false if you are only interested in the word count information, see saveWordcountFile. | bool?, Optional |
saveWordcountFile | Optional. Default is true if not specified. If true then the results will contain a file reference to download the word count details. Use false if you are only interested in the translated file, see saveTranslatedFile. | bool?, Optional |
callbackurl | Optional URL which will be called upon success or failure of operation. This makes polling for results (see below) unnecessary. URL is called as POST request with operation result included in the body, see "RESULTS" chapter below for the JSON format. Suggestion: Include your own references in the URL, example: http://callmeback.mycompany.com?operationid=22222&mydata=abcde | string?, Optional |
RESULTS
The operation may take more or less time depending on the amount of data to export. Therefore it is implemented as an asynchronous operation.
The API method returns an Asynchronous operation result:
{ "trm": { "requestid":32230, "status":"Waiting", "statusText":"Waiting..." } }
If the operation is not completed (status = Finished), you need to poll every few seconds until completion with requestid. When finished you obtain a token to download the JSON file:
{ "trm": { "requestid": 32230, "isbatch": false, "status": "Finished", "statusText": "Finished!" }, "result": { "items": [] }, "custom": { "filetoken": "1104cf62b1934e0f9ae40c43c4af1ae2", "segments": 4, "texts": 9 } }
Get the file: You need to use the call media/get/{token} with token is the custom/filetoken property in the previous result.
JSON FILE FORMAT
The method returns a file. It contains a JSON object with these properties:
type | Flex export descriptor. Disregard. | string |
version | Flex export version. Disregard. | string |
major | Major version of content. Null if no versioning used. | string? |
minor | Minor version of content. Null if no versioning used. | string? |
did | Flex document ID. | int |
dsid | Flex document resource ID. Can be used with other API methods that require this ID. | int |
cfsConfig | If includeCustomFields is true: List of all custom fields with their "id" and their title "t". | object[]? |
lblsConfig | If includeLabels is true: List of all custom fields with their "id" and their title "t". | object[]? |
chmin | Minimum character length for translations. Only included in JSON if a minimum is set. | int? |
chmax | Maximum character length for translations. Only included in JSON if a maximum is set. | int? |
segments | Array of segments. See below. | object[] |
Each element in segments has these properties:
key | Segment key | string |
format | The content format such as "plain" or "html_1". | string |
dt | The last date of change of any property of the segment (texts, status, ...) | datetime |
bsid | Sequential number assigned for display in the translation editor. This number may change with push requests. | int |
cfs | Segment level custom fields (null if there are none). Each array element has properties id (custom field ID) and v (custom field value) | object[]? |
texts | A dictionary of texts. The key is the locale and the value a text object, see below. "texts": { "en": {...}, "fr": {...} } | object[] |
Each element in texts has these properties:
v | The text. | string |
st | The status in Wordbee Translator. 0 = Neutral (gray color), 1 = OK (green color), 2 = Problem (red color). IMPORTANT: This is an important information. We strongly recommend to not update your systems with any texts that are in red status. Red status means that the translation team either did not yet work on the text or they found an issue. You should only consider texts in 0 or 1 status, depending on how the translation team is organized. Some teams may instruct translators to explicitly set translation status to "green" in which case you may only want to read those. | int |
bk | The bookmark in Wordbee Translator. 0 = none, 1 = blue, 2 = red | int |
ed | Last editor. See Last Editor (Enumeration) | int |
dt | Date of modification of text. | datetime |
cfs | Custom fields (null if there are none). Each array element has properties id (custom field ID) and v (custom field value) | object[]? |
lbls | Labels (null if there are none). Each array element has properties id (label ID) and v (selected label value) | object[]? |
cms | Comments attached to text. An array of objects with these properties:
| object[]? |
vc | DEPRECATED - See the "copySourceToTarget" which gives you control if empty translations are replaced or not by the source text.
{ "v": "<p>Hello world</p>", "vc": true, "st": 2, "bk": 0, "ed": 0, "dt": "2019-10-03T15:11:02.4421331Z" } |
EXAMPLES
Basic results without custom fields, labels and comments:
{ "type": "Wordbee Flex File Export", "version": "1.0", "dsid": 3833, "did": 9371, "major": null, "minor": null, "segments": [{ "key": "1001", "dt": "2019-05-22T07:03:50.3871180Z", "format": "plain", "bsid": 2, "texts": { "en": { "v": "Hello world", "st": 0, "bk": 0, "ed": 0, "dt": "2019-05-20T21:43:37.562205Z" }, "de": { "v": "Guten Tag", "st": 0, "bk": 0, "ed": 0, "dt": "2019-05-20T21:43:37.562205Z" } } }, { "key": "1000", "dt": "2019-05-22T07:03:50.3871180Z", "format": "plain", "bsid": 1, "texts": { "en": { "v": "<p>Hello dear world</p>", "st": 0, "bk": 0, "ed": 0, "dt": "2019-05-20T21:43:37.5542057Z" }, "de": { "v": "", "st": 2, "bk": 0, "ed": 0, "dt": "2019-05-16T12:23:37.8150027Z" } } }] }
Basic results with custom fields, labels and comments:
"segments": [{ "key": "1000", "dt": "2019-05-22T07:03:50.3871180Z", "format": "plain", "bsid": 1, "cfs": [{ "id": 5, "v": "kklklklkl" }], "texts": { "en": { "v": "Hello world", "st": 0, "bk": 0, "ed": 0, "dt": "2019-05-20T21:43:37.562205Z", "cfs": [{ "id": 1, "v": "My custom value" }], "lbls": [{ "id": 4043, "v": 20 }] }, "de": { "v": "", "st": 0, "bk": 0, "ed": 0, "dt": "2019-05-20T21:43:37.562205Z", "cfs": [], "lbls": [], "cms": [], "cms": [{ "v": "I have a problem with this translation. Please help.", "cat": 0, "dt": "2019-05-20T21:42:51.8853791Z", "uid": 278 }] } } }, ...