@@ -27,6 +27,7 @@ static void optbug(const struct option *opt, const char *reason)
}
static const char *optname(const struct option *opt, enum opt_parsed flags)
+// FIXME
{
static struct strbuf sb = STRBUF_INIT;
@@ -1055,17 +1056,27 @@ int parse_options(int argc, const char **argv,
}
static int usage_argh(const struct option *opts, FILE *outfile)
+/// Fixme
{
const char *s;
int literal = (opts->flags & PARSE_OPT_LITERAL_ARGHELP) ||
!opts->argh || !!strpbrk(opts->argh, "()<>[]|");
if (opts->flags & PARSE_OPT_OPTARG)
if (opts->long_name)
- s = literal ? "[=%s]" : "[=<%s>]";
+ s = literal ? "[=%s]" :
+ /* TRANSLATORS: keep as is unless you use hints for substitution other than `<>'
+ in which case use those */
+ _("[=<%s>]");
else
- s = literal ? "[%s]" : "[<%s>]";
+ s = literal ? "[%s]" :
+ /* TRANSLATORS: keep as is unless you use hints for substitution other than `<>'
+ in which case use those */
+ _("[<%s>]");
else
- s = literal ? " %s" : " <%s>";
+ s = literal ? " %s" :
+ /* TRANSLATORS: keep as is unless you use hints for substitution other than `<>'
+ in which case use those */
+ _(" <%s>");
return utf8_fprintf(outfile, s, opts->argh ? _(opts->argh) : _("..."));
}
i18n: as translators choose substitution hints applicable to their writing system, expose the ones in parse-options for completeness Signed-off-by: Alexander Shopov <ash@kambanaria.org> --- parse-options.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-)