We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 432fcfa + 11407d0 commit bcf7a19Copy full SHA for bcf7a19
src/Services/Repository/Repository.php
@@ -500,8 +500,9 @@ private function createAndSendPatchWithException(TranslationUpdateEntity $update
500
// add files to local temporary git repository
501
$this->applyChanges($tmpGit, $tmpDir, $update);
502
// commit files to local temporary git repository
503
+ $message = 'Translation update (' . $update->getLanguage() . ')';
504
$author = $this->prepareAuthor($update);
- $tmpGit->commit('translation update', $author);
505
+ $tmpGit->commit($message, $author);
506
507
$this->behavior->sendChange($tmpGit, $update, $this->git);
508
}
0 commit comments