Reduce length of en passant capture notice

There is not much space in the header bar, so let's keep the text as
short as possible.
This commit is contained in:
Michael Catanzaro 2020-12-04 15:43:39 -06:00
parent ba7601886f
commit 73a3af2e3e

View file

@ -1266,9 +1266,9 @@ Copyright © 20152016 Sahil Sareen""";
game.current_state.last_move.en_passant)
{
if (game.current_player.color == Color.WHITE)
headerbar.set_title (_("Black performed an en passant capture"));
headerbar.set_title (_("Black captured en passant"));
else
headerbar.set_title (_("White performed an en passant capture"));
headerbar.set_title (_("White captured en passant"));
}
else if (game.current_player.color == Color.WHITE)
{