summaryrefslogtreecommitdiff
path: root/wt-status.h
diff options
context:
space:
mode:
authorMatthieu Moy <Matthieu.Moy@imag.fr>2014-03-20 12:12:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-26 19:56:30 (GMT)
commit7a76c28ff29d6f819bb0bf9852b858f974b5c53a (patch)
tree4984072cbb3ef9bd68991161b16bf640e7b2c6ac /wt-status.h
parent7bbc4e8fdb33e0a8e42e77cc05460d4c4f615f4d (diff)
downloadgit-7a76c28ff29d6f819bb0bf9852b858f974b5c53a.zip
git-7a76c28ff29d6f819bb0bf9852b858f974b5c53a.tar.gz
git-7a76c28ff29d6f819bb0bf9852b858f974b5c53a.tar.bz2
status: disable translation when --porcelain is used
"git status --branch --porcelain" displays the status of the branch (ahead, behind, gone), and used gettext to translate the string. Use hardcoded strings when --porcelain is used, but keep the gettext translation for "git status --short" which is essentially the same, but meant to be read by a human. Reported-by: Anarky <ghostanarky@gmail.com> Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.h')
-rw-r--r--wt-status.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/wt-status.h b/wt-status.h
index 30a4812..82f6ce6 100644
--- a/wt-status.h
+++ b/wt-status.h
@@ -50,6 +50,7 @@ struct wt_status {
enum commit_whence whence;
int nowarn;
int use_color;
+ int no_gettext;
int display_comment_prefix;
int relative_paths;
int submodule_summary;