]> git.ipfire.org Git - thirdparty/git.git/commitdiff
merge: don't translate literal commands
authorAlex Henrie <alexhenrie24@gmail.com>
Sat, 15 May 2021 20:01:11 +0000 (14:01 -0600)
committerJunio C Hamano <gitster@pobox.com>
Sun, 16 May 2021 04:00:28 +0000 (13:00 +0900)
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>
builtin/merge.c

index 388619536aa1d250d6cad275b67974bbfdca28e4..2d3424cecc9157d389a463a7a7c7953710607c03 100644 (file)
@@ -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
 };