merge: don't translate literal commands

These strings have not been modified in any translation, nor should they be. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Alex Henrie committed May 15, 2021 at 14:01 UTC a30e43f61a1e614309875ab7775f2274b4e40742
1 file changed +2 -2
builtin/merge.c
+2 -2
index 388619536a..2d3424cecc 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -56,8 +56,8 @@ struct strategy { static const char * const builtin_merge_usage[] = { N_("git merge [<options>] [<commit>...]"), - N_("git merge --abort"), - N_("git merge --continue"), + "git merge --abort", + "git merge --continue", NULL };