]> git.ipfire.org Git - thirdparty/git.git/commitdiff
fsmonitor--daemon: don't translate literal commands
authorAlex Henrie <alexhenrie24@gmail.com>
Tue, 20 Sep 2022 05:07:09 +0000 (23:07 -0600)
committerJunio C Hamano <gitster@pobox.com>
Wed, 21 Sep 2022 18:56:42 +0000 (11:56 -0700)
These commands have no placeholders to be translated.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fsmonitor--daemon.c

index 46be55a4618740c5c0746c8c1bed31b20094d73c..e9c74c8626f07a015bf70d1883724f3c3cb7a16f 100644 (file)
@@ -12,8 +12,8 @@
 static const char * const builtin_fsmonitor__daemon_usage[] = {
        N_("git fsmonitor--daemon start [<options>]"),
        N_("git fsmonitor--daemon run [<options>]"),
-       N_("git fsmonitor--daemon stop"),
-       N_("git fsmonitor--daemon status"),
+       "git fsmonitor--daemon stop",
+       "git fsmonitor--daemon status",
        NULL
 };