i18n: factorize even more 'incompatible options' messages
Continue the work of12909b6b8a(i18n: turn "options are incompatible" into "cannot be used together", 2022-01-05) anda699367bb8(i18n: factorize more 'incompatible options' messages, 2022-01-31) to use the same parameterized error message for reporting incompatible command line options. This reduces the number of strings to translate and makes the UI slightly more consistent. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
564d0252ca
commit
7854bf4960
@@ -279,7 +279,8 @@ static enum parse_opt_result get_value(struct parse_opt_ctx_t *p,
|
||||
|
||||
opt_name = optnamearg(opt, arg, flags);
|
||||
other_opt_name = optnamearg(elem->opt, elem->arg, elem->flags);
|
||||
error(_("%s is incompatible with %s"), opt_name, other_opt_name);
|
||||
error(_("options '%s' and '%s' cannot be used together"),
|
||||
opt_name, other_opt_name);
|
||||
free(opt_name);
|
||||
free(other_opt_name);
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user