diff options
| author | Jean-Noël Avila <jn.avila@free.fr> | 2022-01-05 20:02:19 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-01-05 13:31:00 -0800 |
| commit | 6fa00ee843cb6c8e720180b4642590f5bcc9c8cf (patch) | |
| tree | 2963fe6acddc78f97e96401a127f7d5594330275 /builtin/worktree.c | |
| parent | 408c5c5c79c1d8f423625c65f69c8f62a0901f6b (diff) | |
| download | git-6fa00ee843cb6c8e720180b4642590f5bcc9c8cf.tar.gz | |
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>
Diffstat (limited to 'builtin/worktree.c')
| -rw-r--r-- | builtin/worktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c index ec1c59ba53..2838254f7f 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -505,7 +505,7 @@ static int add(int ac, const char **av, const char *prefix) if (!!opts.detach + !!new_branch + !!new_branch_force > 1) die(_("options '%s', '%s', and '%s' cannot be used together"), "-b", "-B", "--detach"); if (lock_reason && !keep_locked) - die(_("--reason requires --lock")); + die(_("the option '%s' requires '%s'"), "--reason", "--lock"); if (lock_reason) opts.keep_locked = lock_reason; else if (keep_locked) |
