Translations

About Translations

What are translations?

Translation represent a document that require a translation in a given language.

The translation object

Attributes

ParameterTypeNote
translation[content]requiredstringjson string of the hash you want to translate
translation[from]requiredstringiso code of the source language
translation[to]requiredstringiso code of the language to translate to
translation[translation_type]requiredenumauto, manual, review_translation
translation[auto_translation_mode]optionalenumeither async or inline to decide if you want the translation being made in th e same

Example

{
  "translation": {
    "content":  "{\"key\":\"Hello World\"}",
    "from": "en",
    "to": "fr",
    "translation_type": "manual",
    "auto_translation_mode": "async"
  }
}
Previous
Show a Review