diff options
author | Kevin Bracey <kevin@bracey.fi> | 2013-03-10 17:10:20 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-10 13:11:31 -0700 |
commit | 421a97694590c2be58f3ccebf301c7239289aa00 (patch) | |
tree | e05d279eb94a4299595b0942baa9f3bb2c2eb82e | |
parent | ca70c9ea7224e1e47d8ab46ea67ba9e29ce8a121 (diff) | |
download | git-421a97694590c2be58f3ccebf301c7239289aa00.tar.gz |
Translate git_more_info_string consistently
"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>
-rw-r--r-- | git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |