Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2022-09-20 08:07:25 +0300
committerJunio C Hamano <gitster@pobox.com>2022-09-21 20:43:10 +0300
commit8b74492135481fe0fdf4b2e023c55d4146a6d209 (patch)
tree216d64d0c33b294d6eb383ceebd3b9ae60495e66 /builtin
parentdd834d75caabd436e306c136f753c801220db2df (diff)
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')
-rw-r--r--builtin/gc.c6
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
};