Eric Sunshine <sunshine@xxxxxxxxxxxxxx> writes: > On Sun, May 9, 2021 at 5:23 PM Alex Henrie <alexhenrie24@xxxxxxxxx> wrote: >> Without the "d", it sounds like a command, not an error, and is liable >> to be translated incorrectly. >> >> Signed-off-by: Alex Henrie <alexhenrie24@xxxxxxxxx> >> --- >> diff --git a/graph.c b/graph.c >> @@ -95,7 +95,7 @@ static void parse_graph_colors_config(struct strvec *colors, const char *string) >> - warning(_("ignore invalid color '%.*s' in log.graphColors"), >> + warning(_("ignored invalid color '%.*s' in log.graphColors"), > > Another possibility: "ignoring invalid color ... in ..." > > Even better: "invalid color ... in ..." The last one, if it does not say what we did to that invalid thing, is not as helpful as Alex's or your "another possibility". Betweein "ignored" vs "ignoring", I do not have a preference, but whichever one is more prevalent in our existing messages should be used, I would think. Thanks.