[PATCH 1/2] Command names should not be translated.
From: Peter Krefting <hidden>
Date: 2016-06-15 22:49:34
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Peter Krefting <hidden>
Date: 2016-06-15 22:49:34
Subsystem:
the rest · Maintainer:
Linus Torvalds
Signed-off-by: Peter Krefting <redacted> --- wt-status.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/wt-status.c b/wt-status.c
index f6946e1..7d4719f 100644
--- a/wt-status.c
+++ b/wt-status.c@@ -663,9 +663,9 @@ void wt_status_print(struct wt_status *s) wt_status_print_submodule_summary(s, 1); /* unstaged */ } if (s->show_untracked_files) { - wt_status_print_other(s, &s->untracked, _("Untracked"), _("add")); + wt_status_print_other(s, &s->untracked, _("Untracked"), "add"); if (s->show_ignored_files) - wt_status_print_other(s, &s->ignored, _("Ignored"), _("add -f")); + wt_status_print_other(s, &s->ignored, _("Ignored"), "add -f"); } else if (s->commitable) fprintf(s->fp, _("# Untracked files not listed%s\n"), advice_status_hints
--
1.7.1