From 421a97694590c2be58f3ccebf301c7239289aa00 Mon Sep 17 00:00:00 2001 From: Kevin Bracey Date: Sun, 10 Mar 2013 17:10:20 +0200 Subject: [PATCH] Translate git_more_info_string consistently "git help" translated the "See 'git help ' for more information..." message, but "git" didn't. Signed-off-by: Kevin Bracey Signed-off-by: Junio C Hamano --- git.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.c b/git.c index d33f9b32a2..e484644897 100644 --- a/git.c +++ b/git.c @@ -536,7 +536,7 @@ int main(int argc, const char **argv) commit_pager_choice(); printf("usage: %s\n\n", git_usage_string); list_common_cmds_help(); - printf("\n%s\n", git_more_info_string); + printf("\n%s\n", _(git_more_info_string)); exit(1); } cmd = argv[0]; -- 2.11.4.GIT