diff options
author | Jean-Noël Avila <jn.avila@free.fr> | 2022-01-31 22:07:47 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-02-04 13:58:28 -0800 |
commit | 1a8aea857e4225a9d35a531869fd47777f3063d6 (patch) | |
tree | 6de239676c35485e95ff12f3ba7629eae3a40197 /builtin/fetch.c | |
parent | a699367bb8749a338aefb092c5d7ac75c69d61e1 (diff) | |
download | git-1a8aea857e4225a9d35a531869fd47777f3063d6.tar.gz |
i18n: factorize "invalid value" messages
Use the same message when an invalid value is passed to a command line
option or a configuration variable.
Signed-off-by: Jean-Noël Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/fetch.c')
-rw-r--r-- | builtin/fetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index 5f06b21f8e..8be19bb879 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -763,8 +763,8 @@ static void prepare_format_display(struct ref *ref_map) else if (!strcasecmp(format, "compact")) compact_format = 1; else - die(_("configuration fetch.output contains invalid value %s"), - format); + die(_("invalid value for '%s': '%s'"), + "fetch.output", format); for (rm = ref_map; rm; rm = rm->next) { if (rm->status == REF_STATUS_REJECT_SHALLOW || |