diff --git a/src/GithubApiHelper.php b/src/GithubApiHelper.php index c119a08..adb4076 100644 --- a/src/GithubApiHelper.php +++ b/src/GithubApiHelper.php @@ -314,7 +314,11 @@ public function createNewTranslationRequestIssueFromMergedTranslationIssue($sour */ private function getTranslationTargetBranchLabel($targetBranch) { - return 'Joomla! ' . substr($targetBranch, 0, 1) . '.x'; + if ($targetBranch === '3.10-dev') + { + return 'Joomla! 3.10'; + } + return 'Joomla! ' . substr($targetBranch, 0, 3); } /**