Skip to content

Commit d3e1ddf

Browse files
avargitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f68f180 commit d3e1ddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/clone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
417417
if (path)
418418
repo = xstrdup(absolute_path(repo_name));
419419
else if (!strchr(repo_name, ':'))
420-
die("repository '%s' does not exist", repo_name);
420+
die(_("repository '%s' does not exist"), repo_name);
421421
else
422422
repo = repo_name;
423423
is_local = path && !is_bundle;

0 commit comments

Comments
 (0)