Skip to content

Commit 421a976

Browse files
kjbracey2gitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ca70c9e commit 421a976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ int main(int argc, const char **argv)
536536
commit_pager_choice();
537537
printf("usage: %s\n\n", git_usage_string);
538538
list_common_cmds_help();
539-
printf("\n%s\n", git_more_info_string);
539+
printf("\n%s\n", _(git_more_info_string));
540540
exit(1);
541541
}
542542
cmd = argv[0];

0 commit comments

Comments
 (0)