Represents default workflow templates for Codyt project.
FORMAT
<ProjectWorkflow xmlns="http://schemas.datacontract.org/2004/07/Wordbee.Database"> <ProjectId>2147483647</ProjectId> <TransAllocMode_>255</TransAllocMode_> <TransHours>32767</TransHours> <TransWordsPerDay>32767</TransWordsPerDay> <RevisionAllocMode_>255</RevisionAllocMode_> <RevisionHours>32767</RevisionHours> <RevisionWordsPerDay>32767</RevisionWordsPerDay> <ApprovalAllocMode_>255</ApprovalAllocMode_> <ApprovalHours>32767</ApprovalHours> <ApprovalWordsPerDay>32767</ApprovalWordsPerDay> </ProjectWorkflow>
PARAMETERS
ProjectId | The unique project id to which this template belongs. |
TransAllocMode_ | If empty, then translation is not part of the workflow.If set, it specifies how work is dispatched:/// <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./// </summary>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./// </summary>SingleUserSelfService = 1,/// <summary>/// Multiple users can work at the same time. The work item is then simply not allocated to/// a specific person./// </summary>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. |