Skip to content

Commit d956fa8

Browse files
alexhenriegitster
authored andcommitted
builtin/diagnose.c: don't translate the two mode values
These strings are not translatable in the diagnose_options array in diagnose.c. Don't translate them in builtin/diagnose.c either. Signed-off-by: Alex Henrie <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent cb98e1d commit d956fa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/diagnose.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ int cmd_diagnose(int argc, const char **argv, const char *prefix)
2222
N_("specify a destination for the diagnostics archive")),
2323
OPT_STRING('s', "suffix", &option_suffix, N_("format"),
2424
N_("specify a strftime format suffix for the filename")),
25-
OPT_CALLBACK_F(0, "mode", &mode, N_("(stats|all)"),
25+
OPT_CALLBACK_F(0, "mode", &mode, "(stats|all)",
2626
N_("specify the content of the diagnostic archive"),
2727
PARSE_OPT_NONEG, option_parse_diagnose),
2828
OPT_END()

0 commit comments

Comments
 (0)