Search Results for

    Show / Hide Table of Contents

    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.

    Namespace: Sdl.ProjectAutomation.Core
    Assembly: Sdl.ProjectAutomation.Core.dll
    Syntax
    public enum CombinedConfirmationLevel

    Fields

    Name Description
    ApprovedSignOff

    All segments in the file have ApprovedSignOff confirmation level. The value of PercentComplete is

    100
    .

    ApprovedTranslation

    All segments in the file have ApprovedTranslation or ApprovedSignOff confirmation level, but at least one segment has ApprovedTranslation confirmation level. The value of PercentComplete is

    100
    .

    InReview

    No segments are Unspecified or Draft and at least one segment is RejectedTranslation or ApprovedTranslation. The value of PercentComplete 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 PercentComplete is

    (Total-(RejectedSignOff+ApprovedSignOff))/Total
    .

    InTranslation

    There is at least one Unspecified or Draft segment. The value of PercentComplete is

    (Total - (Unspecified+Draft)) / Total
    .

    RejectedSignOff

    All segments in the file have ApprovedSignOff or RejectedSignOff confirmation level, but at least one segment has RejectedSignOff confirmation level. The value of PercentComplete is

    (RejectedSignOff)/Total
    .

    RejectedTranslation

    No segments are Unspecified, Draft or Translated and at least one segment is RejectedTranslation. The value of PercentComplete is

    (RejectedTranslation+RejectedSignOff)/Total 
    .

    Translated

    No segments are Unspecified or Draft and at least one segment is Translated. The value of PercentComplete is

    100
    .

    Unspecified

    All segments within the file have confirmation level Unspecified. The value of PercentComplete is

    0
    .

    On this page

    • Fields
    Back to top Generated by DocFX