Skip to content

Commit d0238a8

Browse files
avargitster
authored andcommitted
i18n: git-bisect gettext + echo message
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent dcf9c2e commit d0238a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-bisect.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ bisect_visualize() {
308308

309309
bisect_reset() {
310310
test -s "$GIT_DIR/BISECT_START" || {
311-
echo "We are not bisecting."
311+
gettext "We are not bisecting."; echo
312312
return
313313
}
314314
case "$#" in
@@ -414,7 +414,7 @@ bisect_run () {
414414
fi
415415

416416
if sane_grep "is the first bad commit" "$GIT_DIR/BISECT_RUN" > /dev/null; then
417-
echo "bisect run success"
417+
gettext "bisect run success"; echo
418418
exit 0;
419419
fi
420420

0 commit comments

Comments
 (0)