Versions Compared

Key

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

...

All these parameters are freely configurable by the administrator of the Wordbee Translator platform (to which the user belongs).

URL

(GET) /api/apps/mthive/configuration

...

The method returns a JSON object: 


options

A JSON array of all available options. There is always at least one option.

Example:

Each array element is itself a JSON object containing full details.

object[]
welcomeTextThe welcome text of the MT Hive configurationstring
welcomeTextIsHtmlSpecifies if the welcome text is written with HTML markupbool
peEnabledBoolean. Specifies if user can request a human post editing (improvement) of a machine translation.bool
peTermsUrl

Used when submitting post edit requests.

If not null then this is the URL to view usage Terms & Conditions.

Before a user requests a post edit of a machine translated file, the user must be asked to navigate to this URL.

For example, in your user interface you would add a checkbox like:

   [ ] I have read and agree with the Terms & Conditions.

If the property is null then the user does not need to accept any terms and conditions.

string?
peDeadlineMinLeadHours

Used when submitting post edit requests.

If the user selects a deadline it must be at least this number of hours into the future.

int
peDeadlineMandatory

Used when submitting post edit requests.

If not null then the user must choose a deadline for the work. If null then the choice of a deadline is optional.

bool
preferences

An object containing information about the last execution by the user. It has the following attributes :

profileIndex of the profile number used during the last executionint
srcLocale code of the source language used during the last executionstring
trgLocale code of the target language used during the last executionstring

This object can be null if the user hasn't executed a MTHive request

object?

 


Each option is a JSON object with these properties:


 

option

The option (0, 1, ...) for which this JSON contains the configuration. It is the index of this object in the options array (see above).

int
nameThe title of the option. This should be displayed to the user.string
localesSpecifies the available languages. See description further down.object[]
maxFileSizeMB

The maximum file size in megabytes for translation requests.

You should always prevent a user to submit any files exceeding this limit.

The API itself will also check the limit.

int
formatsSpecifies the supported file formats. See description further down.object[]

 


Locales node

The "locales" node contains these properties:

all

A JSON array with all language codes and print names. Use this information to display language names.

Example:


 

"all": [
      {
        "v""af",
        "t""Afrikaans"
      },
      {
        "v""ar",
        "t""Arabic"
      },
      ...
]


object[]
anytoany

Indicates how source and target language combinations are stored in this JSON.

  • true: There are two lists, one with all source languages and another one with all target languages. Any combination source/target can be selected by the user.
  • false: There is a single list of available source/target language couples. When the user selects a source language, the list of available target languages must be refreshed.

In both cases, the language selector would look the same:

bool
src
trg 

Applies if "anytoany" is true.

Both "src" and "trg" are the supported source and target language codes, respectively. And the user can translate from any source into any target language.

Example:


 

"src": [ "en""fr""es-ES""fi" ],
"trg": [ "en""fr""de"]


string
string
srctrg

Applies if "anytoany" is false.

Example:

 


"srctrg": [ { "s""en""t""fr" }, { "s""en""t""de" }, { "s""de""t""en" } ]
 


Here the user can choose from two source languages: English (en) and German (de). English can be translated into French and German. German can be translated into English. No other combinations are permitted.

object[]

 


Formats node

The "formats" node is a JSON array. Each element describes one file format (Word, HTML..) that can be translated:

 


namePrint name of the format, such as "Adobe Indesign", "Web page", etc.string
ext

An array of possible file extensions. Example:

 


"ext": [ ".indd"".idml" ]
 


This record refers to Adobe Indesign files.

string[]
foptions

A list of format options. When translating a specific file a user may be given a choice how this file shall be handled. For example, the administrator may propose multiple options like:

  • Translate all content
  • Translate all except red text
  • Translate all except headers and footers

There is always at least one option. With just one, no need to ask the user to make a choice.

Example with two options:


 

"foptions": [ 
      "foption": 332, "name""Translate all" },
      "foption": 405, "name""Translate all except red text" }
]

 


The foption value must be included with translation requests.

object[]

 


REMARKS

Let us discuss how you use the file options.

...

As you can see, the ".pot" extension can be both a PO/POT file or a Powerpoint template file.

 


EXAMPLES

The example below contains a configuration with a single option:

Code Block
{
    "options": [
        {
            "option": 0,
            "name": "Fast translation",
            "locales": {
                "all": [
                    {
                        "v": "af",
                        "t": "Afrikaans"
                    },
                    {
                        "v": "ar",
                        "t": "Arabic"
                    },
                    {
                        "v": "be",
                        "t": "Belarusian"
                    }
                ],
                "anytoany": true,
                "src": [
                    "af",
                    "ar",
                    "be"
                ],
                "trg": [
                    "af",
                    "ar",
                    "be",
                    "bg",
                    "ca"
                ]
            },
            "maxFileSizeMB": 20,
            "formats": [
                {
                    "name": "Adobe Indesign",
                    "ext": [
                        ".indd",
                        ".idml"
                    ],
                    "foptions": [
                        {
                            "foption": 38,
                            "name": "Default"
                        }
                    ]
                },
                {
                    "name": "Adobe Photoshop",
                    "ext": [
                        ".psd"
                    ],
                    "foptions": [
                        {
                            "foption": 44,
                            "name": "Default"
                        }
                    ]
                },
                {
                    "name": "Microsoft Powerpoint",
                    "ext": [
                        ".ppt",
                        ".pot",
                        ".pps",
                        ".pptx",
                        ".pptm",
                        ".potx",
                        ".potm",
                        ".ppsx",
                        ".ppsm"
                    ],
                    "foptions": [
                        {
                            "foption": 33,
                            "name": "Default"
                        }
                    ]
                }
            ]
        }
    ],
	"peTermsUrl": null,
    "peDeadlineMinLeadHours": 12,
    "peDeadlineMandatory": true,
	"preferences": {
        "profile": 2,
        "src": "en",
        "trg": "fr"
    }
}

 

 

 

...