From fc8a2acc87236fd41f819e72a75cc3095b3476f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 13 Sep 2010 20:25:45 +0000 Subject: [PATCH] gettextize: git-submodule "Entering [...]" message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Gettextize the "Entering [...]" message. This is explicitly tested for so we need to skip some tests with NO_GETTEXT_POISON. Signed-off-by: Ævar Arnfjörð Bjarmason --- git-submodule.sh | 2 +- t/t7407-submodule-foreach.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/git-submodule.sh b/git-submodule.sh index d453fe96c..6ec6aa5a9 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -291,7 +291,7 @@ cmd_foreach() do if test -e "$path"/.git then - say "Entering '$prefix$path'" + say "$(eval_gettext "Entering '\$prefix\$path'")" name=$(module_name "$path") ( prefix="$prefix$path/" diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index 905a8baae..217fe55be 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -68,7 +68,7 @@ Entering 'sub3' $pwd/clone-foo3-sub3-$sub3sha1 EOF -test_expect_success 'test basic "submodule foreach" usage' ' +test_expect_success NO_GETTEXT_POISON 'test basic "submodule foreach" usage' ' git clone super clone && ( cd clone && @@ -153,7 +153,7 @@ Entering 'sub2' Entering 'sub3' EOF -test_expect_success 'test messages from "foreach --recursive"' ' +test_expect_success NO_GETTEXT_POISON 'test messages from "foreach --recursive"' ' ( cd clone2 && git submodule foreach --recursive "true" > ../actual -- 2.30.2