Skip to content

Commit 8b74492

Browse files
alexhenriegitster
authored andcommitted
gc: don't translate literal commands
The command you type is still "git maintenance" even in other languages. Signed-off-by: Alex Henrie <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dd834d7 commit 8b74492

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

builtin/gc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1466,7 +1466,7 @@ static char *get_maintpath(void)
14661466
}
14671467

14681468
static char const * const builtin_maintenance_register_usage[] = {
1469-
N_("git maintenance register"),
1469+
"git maintenance register",
14701470
NULL
14711471
};
14721472

@@ -1524,7 +1524,7 @@ static int maintenance_register(int argc, const char **argv, const char *prefix)
15241524
}
15251525

15261526
static char const * const builtin_maintenance_unregister_usage[] = {
1527-
N_("git maintenance unregister"),
1527+
"git maintenance unregister",
15281528
NULL
15291529
};
15301530

@@ -2540,7 +2540,7 @@ static int maintenance_start(int argc, const char **argv, const char *prefix)
25402540
}
25412541

25422542
static const char *const builtin_maintenance_stop_usage[] = {
2543-
N_("git maintenance stop"),
2543+
"git maintenance stop",
25442544
NULL
25452545
};
25462546

0 commit comments

Comments
 (0)