From: Ævar Arnfjörð Bjarmason Date: Sun, 10 Apr 2011 19:34:06 +0000 (+0000) Subject: i18n: mark clone nonexistent repository message for translation X-Git-Tag: v1.7.5.4~11^2~20 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d3e1ddfd390da8ed6fd275821802eec64c2f74ac;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/builtin/clone.c b/builtin/clone.c index 4144bcf5c..49c838fd3 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;