Versions Compared

Key

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

Represents codyt project's workflow. In codyt project the workflow is based on three stepTranslation stepRevision stepApproval step

Translation step

Revision step

Approval step


Child pages (Children Display)

FORMAT

Code Block
languagexml
<ApiCodytWorkflow>
<TransAllocMode>0</TransAllocMode>
<TransHours>32767</TransHours>
<TransWordsPerDay>32767</TransWordsPerDay>
<RevisionAllocMode>0</RevisionAllocMode>
<RevisionHours>32767</RevisionHours>
<RevisionWordsPerDay>32767</RevisionWordsPerDay>
<ApprovalAllocMode>0</ApprovalAllocMode>
<ApprovalHours>32767</ApprovalHours>
<ApprovalWordsPerDay>32767</ApprovalWordsPerDay>
</ApiCodytWorkflow>

 

...

PROPERTIES

TransAllocMode

If empty, then translation is not part of the workflow.

// Summary:

// A single user must be allocated to a work item task (translation, revision

// and approval). The user who allocates must have proper rights for it.

SingleUser = 0,

//

// Summary:

// Any user can pick up a work item and put his name on it to reserve exclusive

// work. The user can remove his name if he wants to release item for other

// people. SingleUserSelfService = 1,

//

// Summary:

// Multiple users can work at the same time. The work item is then simply not

// allocated to a specific person.

MultiUser = 2,

TransHours

The non compressible lead time for a translation task in hours. Can be 0.

TransWordsPerDay

If set, the number of words that can be translated per day (8 hours).

Rev***

Revision task details. See translation related properties above.

App***

Approval task details. See translation related properties above.

...