summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3781fcc)
raw | patch | inline | side by side (parent: 3781fcc)
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Tue, 22 Feb 2011 23:41:28 +0000 (23:41 +0000) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 10 Mar 2011 07:52:52 +0000 (23:52 -0800) |
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/clone.c | patch | blob | history | |
t/t5601-clone.sh | patch | blob | history |
diff --git a/builtin/clone.c b/builtin/clone.c
index db0240d185611b6c20ae9a721295563fb11b54e8..b9394c41520407379b16297efac35c781cc0475f 100644 (file)
--- a/builtin/clone.c
+++ b/builtin/clone.c
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 987e0c846309a8a49dbe31ce292edd55342217b3..9e6fa3b2abd04c22c62ed9e4c3d3b35eea735a04 100755 (executable)
--- a/t/t5601-clone.sh
+++ b/t/t5601-clone.sh
'
-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