From: Ævar Arnfjörð Bjarmason <redacted>
Date: Wed, 1 Sep 2010 15:54:30 +0000
Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
Signed-off-by: Jonathan Nieder <redacted>
---
builtin/clone.c | 4 ++--
t/t5601-clone.sh | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/builtin/clone.c b/builtin/clone.c
index db0240d..b9394c4 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -470,9 +470,9 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
if (0 <= option_verbosity) {
if (option_bare)
- printf("Cloning into bare repository %s...\n", dir);
+ printf(_("Cloning into bare repository %s...\n"), dir);
else
- printf("Cloning into %s...\n", dir);
+ printf(_("Cloning into %s...\n"), dir);
}
init_db(option_template, INIT_DB_QUIET);
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh
index 987e0c8..9e6fa3b 100755
--- a/t/t5601-clone.sh
+++ b/t/t5601-clone.sh
@@ -31,7 +31,7 @@ test_expect_success 'clone with excess parameters (2)' '
'
-test_expect_success 'output from clone' '
+test_expect_success C_LOCALE_OUTPUT 'output from clone' '
rm -fr dst &&
git clone -n "file://$(pwd)/src" dst >output &&
test $(grep Clon output | wc -l) = 1
--
1.7.4.1