Skip to content

Commit

Permalink
Translate git_more_info_string consistently
Browse files Browse the repository at this point in the history
"git help" translated the "See 'git help <command>' for more
information..." message, but "git" didn't.

Signed-off-by: Kevin Bracey <kevin@bracey.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Kevin Bracey authored and Junio C Hamano committed Mar 10, 2013
1 parent ca70c9e commit 421a976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 421a976

Please sign in to comment.