commit-graph: clarify missing-chunk error messages
commit93d29247298e9ae3fbc6dd8e022a6260b568191a
authorJeff King <peff@peff.net>
Thu, 9 Nov 2023 07:14:34 +0000 (9 02:14 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 9 Nov 2023 10:07:53 +0000 (9 19:07 +0900)
treefe61f743c35be71754dcf039697a211e760c806d
parent92de4c5d56d084325997ca057701b65a9e79276a
commit-graph: clarify missing-chunk error messages

When a required commit-graph chunk cannot be loaded, we leave its entry
in the struct NULL, and then later complain that it is missing. But
that's just one reason we might not have loaded it, as we also do some
data quality checks.

Let's switch these messages to say "missing or corrupted", which is
exactly what the midx code says for the same cases. Likewise, we'll use
the same phrasing and capitalization as those for consistency. And while
we're here, we can mark them for translation (just like the midx ones).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit-graph.c
t/t5318-commit-graph.sh