From: Alex Henrie Date: Tue, 20 Sep 2022 05:07:25 +0000 (-0600) Subject: gc: don't translate literal commands X-Git-Tag: v2.38.0-rc1~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b74492135481fe0fdf4b2e023c55d4146a6d209;p=thirdparty%2Fgit.git gc: don't translate literal commands The command you type is still "git maintenance" even in other languages. Signed-off-by: Alex Henrie Signed-off-by: Junio C Hamano --- 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 };