Skip to content

Commit 04cc66f

Browse files
committed
Merge branch 'sg/parse-options-subcommand'
Fix messages incorrectly marked for translation. * sg/parse-options-subcommand: gc: don't translate literal commands
2 parents 4140830 + 8b74492 commit 04cc66f

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
@@ -1461,7 +1461,7 @@ static char *get_maintpath(void)
14611461
}
14621462

14631463
static char const * const builtin_maintenance_register_usage[] = {
1464-
N_("git maintenance register"),
1464+
"git maintenance register",
14651465
NULL
14661466
};
14671467

@@ -1519,7 +1519,7 @@ static int maintenance_register(int argc, const char **argv, const char *prefix)
15191519
}
15201520

15211521
static char const * const builtin_maintenance_unregister_usage[] = {
1522-
N_("git maintenance unregister"),
1522+
"git maintenance unregister",
15231523
NULL
15241524
};
15251525

@@ -2542,7 +2542,7 @@ static int maintenance_start(int argc, const char **argv, const char *prefix)
25422542
}
25432543

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

0 commit comments

Comments
 (0)