Home > @tridion-sites/open-api-client > TranslationStatus
Represents translation status of an Item.
Members: * NotTranslated - Item is not translated.
* InProgress - Translation in progress.
* UpToDate - Items contains latest translation of source.
* NewSourceVersionExists - New version of source available.
* NewTargetVersionExists - Previous version of target item contains translation but target item was changed after.
* UnknownByClient - Special reserved value used to notify an older API version client about the presence of an enumeration member added in a later API version. Explicitly setting this value by a client is not allowed, but client code should check it and be able to handle such cases.
Signature:
export declare enum TranslationStatus
| Member | Value | Description |
|---|---|---|
| IN_PROGRESS | "InProgress" |
|
| NEW_SOURCE_VERSION_EXISTS | "NewSourceVersionExists" |
|
| NEW_TARGET_VERSION_EXISTS | "NewTargetVersionExists" |
|
| NOT_TRANSLATED | "NotTranslated" |
|
| UNKNOWN_BY_CLIENT | "UnknownByClient" |
|
| UP_TO_DATE | "UpToDate" |