Re: [RFC/PATCH 2/7] rerere: mark strings for translation

2018-05-24 Thread Junio C Hamano
Thomas Gummerer writes: > if (write_in_full(out_fd, buf.buf, buf.len) < 0) > - die("unable to write rerere record"); > + die(_("unable to write rerere record")); As we'd be adding these new strings to the .po file,

[RFC/PATCH 2/7] rerere: mark strings for translation

2018-05-20 Thread Thomas Gummerer
'git rerere' is considered a plumbing command and as such its output should be translated. Its functionality is also only enabled through a config setting, so scripts really shouldn't rely on its output either way. Signed-off-by: Thomas Gummerer --- rerere.c | 68