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>
Alex Henrie committed
Sep 19, 2022 at 23:07 UTC
8b74492135481fe0fdf4b2e023c55d4146a6d209
1 file changed
+3
-3
builtin/gc.c
+3
-3
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
};