summaryrefslogtreecommitdiff
path: root/builtin/clone.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2011-04-10 19:34:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-04-12 07:12:53 (GMT)
commitd3e1ddfd390da8ed6fd275821802eec64c2f74ac (patch)
tree4e929d6d94d49aaf615605f701689f7369949aff /builtin/clone.c
parentf68f1801726eb64d139dfb7d7858a470aef595f2 (diff)
downloadgit-d3e1ddfd390da8ed6fd275821802eec64c2f74ac.zip
git-d3e1ddfd390da8ed6fd275821802eec64c2f74ac.tar.gz
git-d3e1ddfd390da8ed6fd275821802eec64c2f74ac.tar.bz2
i18n: mark clone nonexistent repository message for translation
Mark the "repository '%s' does not exist" message added in v1.7.4.2~21^2 (clone: die when trying to clone missing local path) by Jeff King for translation. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/clone.c')
-rw-r--r--builtin/clone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c
index 4144bcf..49c838f 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -417,7 +417,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
if (path)
repo = xstrdup(absolute_path(repo_name));
else if (!strchr(repo_name, ':'))
- die("repository '%s' does not exist", repo_name);
+ die(_("repository '%s' does not exist"), repo_name);
else
repo = repo_name;
is_local = path && !is_bundle;