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
@ -541,7 +541,7 @@ int cmd_add(int argc, const char **argv, const char *prefix)
|
||||
die(_("options '%s' and '%s' cannot be used together"), "-A", "-u");
|
||||
|
||||
if (!show_only && ignore_missing)
|
||||
die(_("Option --ignore-missing can only be used together with --dry-run"));
|
||||
die(_("the option '%s' requires '%s'"), "--ignore-missing", "--dry-run");
|
||||
|
||||
if (chmod_arg && ((chmod_arg[0] != '-' && chmod_arg[0] != '+') ||
|
||||
chmod_arg[1] != 'x' || chmod_arg[2]))
|
||||
@ -573,7 +573,7 @@ int cmd_add(int argc, const char **argv, const char *prefix)
|
||||
PATHSPEC_SYMLINK_LEADING_PATH,
|
||||
prefix, pathspec_from_file, pathspec_file_nul);
|
||||
} else if (pathspec_file_nul) {
|
||||
die(_("--pathspec-file-nul requires --pathspec-from-file"));
|
||||
die(_("the option '%s' requires '%s'"), "--pathspec-file-nul", "--pathspec-from-file");
|
||||
}
|
||||
|
||||
if (require_pathspec && pathspec.nr == 0) {
|
||||
|
Reference in New Issue
Block a user