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>
This commit is contained in:

committed by
Junio C Hamano

parent
408c5c5c79
commit
6fa00ee843
@ -2112,7 +2112,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
|
||||
if (creation_factor < 0)
|
||||
creation_factor = RANGE_DIFF_CREATION_FACTOR_DEFAULT;
|
||||
else if (!rdiff_prev)
|
||||
die(_("--creation-factor requires --range-diff"));
|
||||
die(_("the option '%s' requires '%s'"), "--creation-factor", "--range-diff");
|
||||
|
||||
if (rdiff_prev) {
|
||||
if (!cover_letter && total != 1)
|
||||
|
Reference in New Issue
Block a user