diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-04-21 10:42:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-04-21 10:42:52 -0700 |
commit | 8fe3ee67adcd2ee9372c7044fa311ce55eb285b4 (patch) | |
tree | de9808909692a95575e34d29cf0eb5b832b5c851 /diff.c | |
parent | 0b17b4331087224883878e49342037bf69717b62 (diff) | |
parent | cbcfd4e3ea9db3125619591b942f56d0a8f3ef48 (diff) | |
download | git-8fe3ee67adcd2ee9372c7044fa311ce55eb285b4.tar.gz |
Merge branch 'jx/i18n'
* jx/i18n:
i18n: mention "TRANSLATORS:" marker in Documentation/CodingGuidelines
i18n: only extract comments marked with "TRANSLATORS:"
i18n: remove obsolete comments for translators in diffstat generation
i18n: fix uncatchable comments for translators in date.c
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -1461,20 +1461,12 @@ int print_stat_summary(FILE *fp, int files, int insertions, int deletions) * but nothing about added/removed lines? Is this a bug in Git?"). */ if (insertions || deletions == 0) { - /* - * TRANSLATORS: "+" in (+) is a line addition marker; - * do not translate it. - */ strbuf_addf(&sb, (insertions == 1) ? ", %d insertion(+)" : ", %d insertions(+)", insertions); } if (deletions || insertions == 0) { - /* - * TRANSLATORS: "-" in (-) is a line removal marker; - * do not translate it. - */ strbuf_addf(&sb, (deletions == 1) ? ", %d deletion(-)" : ", %d deletions(-)", deletions); |