1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-24 10:55:41 +02:00

graph: improve grammar of "invalid color" error message

Without the "d", it sounds like a command, not an error, and is liable
to be translated incorrectly.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Alex Henrie 2021-06-12 12:41:44 -06:00 committed by Junio C Hamano
parent ebf3c04b26
commit 9853830787

View File

@ -95,7 +95,7 @@ static void parse_graph_colors_config(struct strvec *colors, const char *string)
if (!color_parse_mem(start, comma - start, color))
strvec_push(colors, color);
else
warning(_("ignore invalid color '%.*s' in log.graphColors"),
warning(_("ignored invalid color '%.*s' in log.graphColors"),
(int)(comma - start), start);
start = comma + 1;
}