Enum CombinedConfirmationLevel
Represents a combined confirmation level value, which indicates where a file or set of files
is in the project life-cycle. See CombinedConfirmationLevel.
Assembly: Sdl.ProjectAutomation.Core.dll
Syntax
public enum CombinedConfirmationLevel
Fields
| Name |
Description |
| ApprovedSignOff |
All segments in the file have <xref href="Sdl.Core.Globalization.ConfirmationLevel.ApprovedSignOff" data-throw-if-not-resolved="false"></xref> confirmation level.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
100
.
|
| ApprovedTranslation |
All segments in the file have <xref href="Sdl.Core.Globalization.ConfirmationLevel.ApprovedTranslation" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.ApprovedSignOff" data-throw-if-not-resolved="false"></xref> confirmation level, but at least one segment has <xref href="Sdl.Core.Globalization.ConfirmationLevel.ApprovedTranslation" data-throw-if-not-resolved="false"></xref> confirmation level.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
100
.
|
| InReview |
No segments are <xref href="Sdl.Core.Globalization.ConfirmationLevel.Unspecified" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.Draft" data-throw-if-not-resolved="false"></xref> and at least one segment is <xref href="Sdl.Core.Globalization.ConfirmationLevel.RejectedTranslation" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.ApprovedTranslation" data-throw-if-not-resolved="false"></xref>.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
(Total - (Unspecified+Draft+Translated)) / Total
.
|
| InSignOff |
All segments in the file have Approved Translation, Approved SignOff or Rejected SignOff confirmation level, but at least one segment has Approved Translation confirmation level.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
(Total-(RejectedSignOff+ApprovedSignOff))/Total
.
|
| InTranslation |
There is at least one <xref href="Sdl.Core.Globalization.ConfirmationLevel.Unspecified" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.Draft" data-throw-if-not-resolved="false"></xref> segment.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
(Total - (Unspecified+Draft)) / Total
.
|
| RejectedSignOff |
All segments in the file have <xref href="Sdl.Core.Globalization.ConfirmationLevel.ApprovedSignOff" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.RejectedSignOff" data-throw-if-not-resolved="false"></xref> confirmation level, but at least one segment has <xref href="Sdl.Core.Globalization.ConfirmationLevel.RejectedSignOff" data-throw-if-not-resolved="false"></xref> confirmation level.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
(RejectedSignOff)/Total
.
|
| RejectedTranslation |
No segments are <xref href="Sdl.Core.Globalization.ConfirmationLevel.Unspecified" data-throw-if-not-resolved="false"></xref>, <xref href="Sdl.Core.Globalization.ConfirmationLevel.Draft" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.Translated" data-throw-if-not-resolved="false"></xref> and at least one segment is <xref href="Sdl.Core.Globalization.ConfirmationLevel.RejectedTranslation" data-throw-if-not-resolved="false"></xref>.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
(RejectedTranslation+RejectedSignOff)/Total
.
|
| Translated |
No segments are <xref href="Sdl.Core.Globalization.ConfirmationLevel.Unspecified" data-throw-if-not-resolved="false"></xref> or <xref href="Sdl.Core.Globalization.ConfirmationLevel.Draft" data-throw-if-not-resolved="false"></xref> and at least one segment is <xref href="Sdl.Core.Globalization.ConfirmationLevel.Translated" data-throw-if-not-resolved="false"></xref>.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
100
.
|
| Unspecified |
All segments within the file have confirmation level <xref href="Sdl.Core.Globalization.ConfirmationLevel.Unspecified" data-throw-if-not-resolved="false"></xref>.
The value of <xref href="Sdl.ProjectAutomation.Core.ConfirmationStatistics.PercentComplete" data-throw-if-not-resolved="false"></xref> is
0
.
|