Re: [RFC/PATCH] i18n of multi-line messages
From: Andreas Schwab <hidden>
Date: 2016-06-15 22:52:41
Chris Packham [off-list ref] writes:
Hi Junio, On 12/22/2011 08:38 PM, Junio C Hamano wrote:quoted
+ for (cp = buf.buf; *cp; cp = np) { + np = strchrnul(cp, '\n'); + /* + * TRANSLATORS: the format is designed so that in RTL + * languages you could reorder and put the "prefix" at + * the end instead of the beginning of a line if you + * wanted to. + */ + strbuf_addf(&line, + _("%s: %.*s\n"), + prefix, + (int)(np - cp), cp); + emit(&line, cb_data); + strbuf_reset(&line); + if (*np) + np++; + }Forgive my ignorance if I've missed something, but how is this going to work for RTL languages? Translators can change the format string but they can't change the order of parameters passed to strbuf_addf.
Translations can select the parameters to use with the n$ specification, eg. "%3$.*2$s: %$1s\n" Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."