Re: [PATCH] i18n: leave \n out of translated diffstat

2012-07-26 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > diff --git a/diff.c b/diff.c > index 62cbe14..95706a5 100644 > --- a/diff.c > +++ b/diff.c > @@ -1397,7 +1397,7 @@ int print_stat_summary(FILE *fp, int files, int > insertions, int deletions) > > if (!files) { > assert(insertions == 0 && dele

[PATCH] i18n: leave \n out of translated diffstat

2012-07-26 Thread Nguyễn Thái Ngọc Duy
GETTEXT_POISON scrapes everything in translated strings, including \n. t4205.12 however needs this \n in matching the end result. Keep this \n out of translation to make t4205.12 happy. Signed-off-by: Nguyễn Thái Ngọc Duy --- I haven't followed recent i18n patches closely. Jiang may have alread