clients/tools/common.c:tool_common_usage() contains code like:
static const char *const descriptions[] = {
N_("..."),
...
N_(" -e ...")
N_(" ...")
N_(" ...")
N_(" ...")
N_(" ..."),
...
Are the N_()'s enclosing the components of the multi-line string literal
correct, or should it be:
N_(" -e ..."
" ..."
" ..."
" ..."
" ..."),
?
--
Hallvard