@@ -54,14 +54,13 @@ if ! gh auth status &> /dev/null; then
5454 exit 1
5555fi
5656
57- LOGGED_IN_AS=$( gh auth status | grep Logged | sed -e ' s/^.*Logged in .*as //' -e ' s/ ([^)]*)$//' )
57+ LOGGED_IN_AS=$( gh auth status | grep Logged | sed -e ' s/^.*Logged in to github.com account //' -e ' s/ ([^)]*)$//' )
5858
5959RELEASE=$1
6060DEADLINE=$2
6161TYPE=$3
6262EXTRA_TEXT=${4:- }
6363MILESTONE=" Release ${RELEASE} "
64- PROJECT=Tracking
6564
6665# shellcheck disable=SC2034 # shellcheck can't know that this will be used with envsubst, so "unused" variable is correct here.
6766START_DATE=$( date -Idate)
@@ -114,8 +113,11 @@ ${EXTRA_TEXT}${MULTIPLE_TRANSLATORS_TEXT}
114113
115114Further documentation can be found in [TRANSLATING.md](https://github.com/jamulussoftware/jamulus/blob/main/docs/TRANSLATING.md).
116115
116+
117117Thanks for contributing to Jamulus!
118118
119+ In case you are **NOT** planning to update **${LANG}**, please comment on this issue.
120+
119121<a href="https://hosted.weblate.org/engage/jamulus/"><img src="https://hosted.weblate.org/widgets/jamulus/-/jamulus-app/multi-auto.svg" alt="Translation status" /></a>
120122
121123**[Weblate progress](https://hosted.weblate.org/changes/browse/jamulus/jamulus-app/${LANG}/?start_date=${START_DATE})**'
@@ -159,12 +161,6 @@ Please [replace with new URLs](https://github.com/jamulussoftware/jamuluswebsite
159161
160162<!-- add URLs here-->
161163
162- 
163-
164- 
165-
166- 
167-
168164'
169165
170166get_languages () {
@@ -242,7 +238,7 @@ create_translation_issue_for_lang() {
242238 # If there's no existing issue, create one
243239 if [[ -z $existing_issue ]]; then
244240 echo " Creating Issue to translate $lang for $RELEASE "
245- URL=$( gh issue create --title " $title " --label translation --project " $PROJECT " -- body " $body " --assignee " $translators " --milestone " $MILESTONE " )
241+ URL=$( gh issue create --title " $title " --label translation --body " $body " --assignee " $translators " --milestone " $MILESTONE " )
246242 existing_issue=${URL/* \/ / }
247243 else
248244 echo " Issue to translate $lang for $RELEASE already exists"
0 commit comments