* [[PATCH] [RESUBMIT] Consistency for substitution hints (i18n) 0/1]
@ 2024-04-21 18:14 Alexander Shopov
2024-04-21 18:14 ` [[PATCH] [RESUBMIT] Consistency for substitution hints (i18n) 1/1] parse-options: use localized substitution hints Alexander Shopov
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Shopov @ 2024-04-21 18:14 UTC (permalink / raw)
To: git, gitster, worldhello.net; +Cc: Alexander Shopov
i18n: as translators choose substitution hints applicable
to their writing system, expose the ones in parse-options
for completeness
Alexander Shopov (1):
parse-options: use localized substitution hints
parse-options.c | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
--
2.44.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* [[PATCH] [RESUBMIT] Consistency for substitution hints (i18n) 1/1] parse-options: use localized substitution hints
2024-04-21 18:14 [[PATCH] [RESUBMIT] Consistency for substitution hints (i18n) 0/1] Alexander Shopov
@ 2024-04-21 18:14 ` Alexander Shopov
0 siblings, 0 replies; 2+ messages in thread
From: Alexander Shopov @ 2024-04-21 18:14 UTC (permalink / raw)
To: git, gitster, worldhello.net; +Cc: Alexander Shopov
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(-)
diff --git a/parse-options.c b/parse-options.c
index 63a99dea6e..93712c6904 100644
--- a/parse-options.c
+++ b/parse-options.c
@@ -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) : _("..."));
}
--
2.44.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-04-21 18:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-21 18:14 [[PATCH] [RESUBMIT] Consistency for substitution hints (i18n) 0/1] Alexander Shopov
2024-04-21 18:14 ` [[PATCH] [RESUBMIT] Consistency for substitution hints (i18n) 1/1] parse-options: use localized substitution hints Alexander Shopov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).