for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Matecat\XliffParser\Constants;
/**
* This is a subset of
* https://github.com/matecat/MateCat/blob/develop/lib/Utils/Constants/TranslationStatus.php
*/
class TranslationStatus {
const STATUS_NEW = 'NEW';
const STATUS_DRAFT = 'DRAFT';
const STATUS_TRANSLATED = 'TRANSLATED';
const STATUS_APPROVED = 'APPROVED';
const STATUS_APPROVED2 = 'APPROVED2';
const STATUS_REJECTED = 'REJECTED';
const STATUS_FIXED = 'FIXED';
const STATUS_REBUTTED = 'REBUTTED';
}