diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2022-09-19 23:07:25 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-09-21 10:43:10 -0700 |
commit | 8b74492135481fe0fdf4b2e023c55d4146a6d209 (patch) | |
tree | 216d64d0c33b294d6eb383ceebd3b9ae60495e66 /builtin/gc.c | |
parent | dd834d75caabd436e306c136f753c801220db2df (diff) | |
download | git-8b74492135481fe0fdf4b2e023c55d4146a6d209.tar.gz |
gc: don't translate literal commands
The command you type is still "git maintenance" even in other languages.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/gc.c')
-rw-r--r-- | builtin/gc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/gc.c b/builtin/gc.c index 84549888f5..01ab0716ee 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -1466,7 +1466,7 @@ static char *get_maintpath(void) } static char const * const builtin_maintenance_register_usage[] = { - N_("git maintenance register"), + "git maintenance register", NULL }; @@ -1524,7 +1524,7 @@ done: } static char const * const builtin_maintenance_unregister_usage[] = { - N_("git maintenance unregister"), + "git maintenance unregister", NULL }; @@ -2540,7 +2540,7 @@ static int maintenance_start(int argc, const char **argv, const char *prefix) } static const char *const builtin_maintenance_stop_usage[] = { - N_("git maintenance stop"), + "git maintenance stop", NULL }; |