i18n: rebase: fix marked string to use eval_gettext variant

The string message marked for translation should use eval_gettext
variant instead of the gettext one, since we want to dollar-substitute
$head_name in the result.

Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Vasco Almeida 2016-06-17 20:20:58 +00:00 коммит произвёл Junio C Hamano
Родитель ff3b018d2f
Коммит 24a6df489a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -154,7 +154,7 @@ move_to_original_branch () {
git symbolic-ref \
-m "rebase finished: returning to $head_name" \
HEAD $head_name ||
die "$(gettext "Could not move back to $head_name")"
die "$(eval_gettext "Could not move back to \$head_name")"
;;
esac
}