diff options
author | Jean-Noël Avila <jn.avila@free.fr> | 2022-01-05 20:02:16 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-05 13:29:23 -0800 |
commit | 12909b6b8a4a51e9d2b46610be4f93c782949c80 (patch) | |
tree | e0643769171bc1f80a17d52c7724b8fee3b21978 /builtin/branch.c | |
parent | i18n: refactor "%s, %s and %s are mutually exclusive" (diff) | |
download | tgif-12909b6b8a4a51e9d2b46610be4f93c782949c80.tar.xz |
i18n: turn "options are incompatible" into "cannot be used together"
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/branch.c')
-rw-r--r-- | builtin/branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index 6c8b0fcc11..0e93865371 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -722,7 +722,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) finalize_colopts(&colopts, -1); if (filter.verbose) { if (explicitly_enable_column(colopts)) - die(_("--column and --verbose are incompatible")); + die(_("options '%s' and '%s' cannot be used together"), "--column", "--verbose"); colopts = 0; } |