diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-11-26 20:57:56 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-29 15:30:03 +0900 |
commit | 739fb7167d6b0880f814887efe5b26290b44b14c (patch) | |
tree | 6eb2c1062e2f65ef307a9695a5e971659268a220 | |
parent | transport-helper.c: mark more strings for translation (diff) | |
download | tgif-739fb7167d6b0880f814887efe5b26290b44b14c.tar.xz |
transport-helper.c: do not translate a string twice
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | transport-helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport-helper.c b/transport-helper.c index 84a10661cc..7bd16c4be3 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -573,7 +573,7 @@ static int run_connect(struct transport *transport, struct strbuf *cmdbuf) fprintf(stderr, "Debug: Falling back to dumb " "transport.\n"); } else { - die(_(_("unknown response to connect: %s")), + die(_("unknown response to connect: %s"), cmdbuf->buf); } |