diff --git a/scripts/rev.php b/scripts/rev.php index 2d21520..9cc13e8 100644 --- a/scripts/rev.php +++ b/scripts/rev.php @@ -511,7 +511,15 @@ function captureGitValues( & $output ) { $SQL_BUFF .= "INSERT INTO Untranslated VALUES ($id, '$lang', '$en->name', $size);\n"; - } else { + } + else if ($trFile->syncStatus == FileStatusEnum::RevTagProblem) + { + $SQL_BUFF .= "INSERT INTO translated VALUES ($id, '$lang', + '$en->name', '$trFile->hash', $size, '$trFile->maintainer', + '$trFile->completion', '$trFile->syncStatus', 0, 0);\n"; + } + else + { $additions = $deletions = -1; if ( $en->hash == $trFile->hash ){ $trFile->syncStatus = FileStatusEnum::TranslatedOk;