Skip to content

Commit d1d96a8

Browse files
jiangxingitster
authored andcommitted
i18n: remove obsolete comments for translators in diffstat generation
Since we do not translate diffstat any more, remove the obsolete comments. Signed-off-by: Jiang Xin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent fcaed04 commit d1d96a8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

diff.c

-8
Original file line numberDiff line numberDiff line change
@@ -1461,20 +1461,12 @@ int print_stat_summary(FILE *fp, int files, int insertions, int deletions)
14611461
* but nothing about added/removed lines? Is this a bug in Git?").
14621462
*/
14631463
if (insertions || deletions == 0) {
1464-
/*
1465-
* TRANSLATORS: "+" in (+) is a line addition marker;
1466-
* do not translate it.
1467-
*/
14681464
strbuf_addf(&sb,
14691465
(insertions == 1) ? ", %d insertion(+)" : ", %d insertions(+)",
14701466
insertions);
14711467
}
14721468

14731469
if (deletions || insertions == 0) {
1474-
/*
1475-
* TRANSLATORS: "-" in (-) is a line removal marker;
1476-
* do not translate it.
1477-
*/
14781470
strbuf_addf(&sb,
14791471
(deletions == 1) ? ", %d deletion(-)" : ", %d deletions(-)",
14801472
deletions);

0 commit comments

Comments
 (0)