diff options
author | Jean-Noël Avila <jn.avila@free.fr> | 2022-01-05 20:02:19 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-05 13:31:00 -0800 |
commit | 6fa00ee843cb6c8e720180b4642590f5bcc9c8cf (patch) | |
tree | 2963fe6acddc78f97e96401a127f7d5594330275 /fetch-pack.c | |
parent | i18n: tag.c factorize i18n strings (diff) | |
download | tgif-6fa00ee843cb6c8e720180b4642590f5bcc9c8cf.tar.xz |
i18n: factorize "--foo requires --bar" and the like
They are all replaced by "the option '%s' requires '%s'", which is a
new string but replaces 17 previous unique strings.
Signed-off-by: Jean-Noël Avila <jn.avila@free.fr>
Reviewed-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r-- | fetch-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c index 34987a2c30..dd6ec449f2 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -297,7 +297,7 @@ static int find_common(struct fetch_negotiator *negotiator, struct packet_reader reader; if (args->stateless_rpc && multi_ack == 1) - die(_("--stateless-rpc requires multi_ack_detailed")); + die(_("the option '%s' requires '%s'"), "--stateless-rpc", "multi_ack_detailed"); packet_reader_init(&reader, fd[0], NULL, 0, PACKET_READ_CHOMP_NEWLINE | |