Versions Compared

Key

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

...

Code Block
languageactionscript3
{ "count" : 5,
  "hasmore" : false,
  "rows" : [ 
 
		{ "source" : { 
			"dt" : "2015-08-03T14:54:57.5306901Z",
            "fi" : "Machine Views\\RearView.png.xml",
            "fo" : "",
            "key" : "x-shape-bubble",
            "meta" : null,
            "rid" : null,
            "sindex" : 0,
            "tx" : "Rear Electronics Enclosure",
            "txa" : "Rear Viewer",
            "txb" : null
          },
        "target" : { 
			"cm" : null,
            "ed" : "◀Perfect previous version translation▶",
            "lk" : false,
            "loc" : "es-419",
            "st" : 2,
            "tr" : 1,
            "tx" : "Caja trasera de componentes electrónicos",
            "txa" : "Visor Trasero",
            "txb" : null,
            "upd" : "0001-01-01T00:00:00",
            "val" : false
          }
      },

      { "source" : { "dt" : "2015-08-03T14:54:57.5306901Z",
            "fi" : "Machine Views\\RearView.png.xml",
            "fo" : "",
            "key" : "x-shape-bubble",
            "meta" : null,
            "rid" : null,
            "sindex" : 4,
            "tx" : "Air Filtration and Distribution",
            "txa" : null,
            "txb" : "Main Power CB"
          },
        "target" : { "cm" : null,
            "ed" : "",
            "lk" : false,
            "loc" : "fr-FR",
            "st" : 0,
            "tr" : 0,
            "tx" : null,
            "txa" : null,
            "txb" : null,
            "upd" : "2015-08-03T14:54:57.5306901Z",
            "val" : false
          }

      }
    ],
  "skip" : 0
}

 

...

JSON Fields

When exporting content to JSON, the file is always for one specific target language. It is not possible to retrieve multilingual content.

...

Field

Description

 

cm

The date when this segment was extracted from the source file.

Typically, this is done once per source file unless reprocessing is explicitly triggered from the UI or API.

edA code indicating the origin of a translation, if any.
lkThe translation is locked for editing by the user
loc

The target language code.

st

The Quality Assurance status:

0 = not set, 1 = QA Ok, 2 = QA Error

tr

Level of trust:

0 = no translation yet, 1 =Untrusted translation such as machine translation,

2 =Medium trusted translation, might require verification, 3 =Trusted translation  

txThe translation. Null is no translation.
txaThe translation of the source text right after the present segment inside the original file. This is the context.
txbThe translation of the source text right before the present segment inside the original file. This is the context.
updThe date when the translation or its properties were last updated.
valThe translation currently is approved or not

 

Encoding of Markup

The tx, txa and txb fields may contain markup using UNICODE characters \1 and \2.

Example:

An html source file contains:

Code Block
languagexml
<p>Hello <strong>world</strong></p>

This will be stored in the Beebox like:

Code Block
languageactionscript3
"tx": "Hello \u0001strong\u0002world\u0001/strong\u0002"

The markup names are still there but enclosed with the UNICODE special characters.

The sample applies to all formats such as Word, Excel, InDesign, XML, etc.