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 /builtin/fast-export.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 'builtin/fast-export.c')
-rw-r--r-- | builtin/fast-export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c index 1f8fe7b3ac..f4d9aa1e8d 100644 --- a/builtin/fast-export.c +++ b/builtin/fast-export.c @@ -1254,7 +1254,7 @@ int cmd_fast_export(int argc, const char **argv, const char *prefix) usage_with_options (fast_export_usage, options); if (anonymized_seeds.cmpfn && !anonymize) - die(_("--anonymize-map without --anonymize does not make sense")); + die(_("the option '%s' requires '%s'"), "--anonymize-map", "--anonymize"); if (refspecs_list.nr) { int i; |