diff options
author | Jean-Noël Avila <jn.avila@free.fr> | 2022-01-05 21:02:19 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-05 22:31:00 +0100 |
commit | 6fa00ee843cb6c8e720180b4642590f5bcc9c8cf (patch) | |
tree | 2963fe6acddc78f97e96401a127f7d5594330275 /t/t7526-commit-pathspec-file.sh | |
parent | i18n: tag.c factorize i18n strings (diff) | |
download | git-6fa00ee843cb6c8e720180b4642590f5bcc9c8cf.tar.xz git-6fa00ee843cb6c8e720180b4642590f5bcc9c8cf.zip |
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 '')
-rwxr-xr-x | t/t7526-commit-pathspec-file.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7526-commit-pathspec-file.sh b/t/t7526-commit-pathspec-file.sh index 574cf30285..ea69e3a6ad 100755 --- a/t/t7526-commit-pathspec-file.sh +++ b/t/t7526-commit-pathspec-file.sh @@ -153,7 +153,7 @@ test_expect_success 'error conditions' ' test_i18ngrep -e "--pathspec-from-file is incompatible with pathspec arguments" err && test_must_fail git commit --pathspec-file-nul -m "Commit" 2>err && - test_i18ngrep -e "--pathspec-file-nul requires --pathspec-from-file" err && + test_i18ngrep -e "the option .--pathspec-file-nul. requires .--pathspec-from-file." err && test_must_fail git commit --pathspec-from-file=empty_list --include -m "Commit" 2>err && test_i18ngrep -e "No paths with --include/--only does not make sense." err && |