From 765ffcc92358ceb3703f2ea9ede579b6ae7d38e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 14 Sep 2010 12:17:01 +0000 Subject: [PATCH] gettextize: git-bisect bisect_replay + $1 messages MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Gettextize bisect_replay messages that use the $1 variable. Since it's subroutine local we have to provide an alias for it for eval_gettext. Since I was doing that anyway I've changed all other uses of $1 variable to use the alias variable for clarity. Signed-off-by: Ævar Arnfjörð Bjarmason --- git-bisect.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/git-bisect.sh b/git-bisect.sh index 64c6b81da..f3162d61b 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -341,7 +341,8 @@ bisect_clean_state() { } bisect_replay () { - test -r "$1" || die "cannot read $1 for replaying" + file="$1" + test -r "$file" || die "$(eval_gettext "cannot read \$file for replaying")" bisect_reset while read git bisect command rev do @@ -359,7 +360,7 @@ bisect_replay () { *) die "$(gettext "?? what are you talking about?")" ;; esac - done <"$1" + done <"$file" bisect_auto_next } -- 2.30.2