New template for 'libc' made available
Paul Eggert
eggert@cs.ucla.edu
Mon Aug 3 19:08:00 GMT 2015
Carlos O'Donell wrote:
> dbg_log (_("monitored file `%s` was %s, removing watch"),
> + finfo->fname, moved ? _("moved") : _("deleted"));
This sort of thing really should be something like:
dbg_log ((moved
? _("monitored file '%s' was moved, removing watch")
: _("monitored file '%s' was deleted, removing watch")),
finfo->fname);
for the benefit of people trying to write translations. One can't always
disassemble and reassemble English sentences so easily in other languages.
More information about the Libc-alpha
mailing list