diff --git a/src/Services/Repository/Repository.php b/src/Services/Repository/Repository.php index a383854c..da5a7535 100644 --- a/src/Services/Repository/Repository.php +++ b/src/Services/Repository/Repository.php @@ -500,8 +500,9 @@ private function createAndSendPatchWithException(TranslationUpdateEntity $update // add files to local temporary git repository $this->applyChanges($tmpGit, $tmpDir, $update); // commit files to local temporary git repository + $message = 'Translation update (' . $update->getLanguage() . ')'; $author = $this->prepareAuthor($update); - $tmpGit->commit('translation update', $author); + $tmpGit->commit($message, $author); $this->behavior->sendChange($tmpGit, $update, $this->git); }