[gnome-chess] Fix color in message when White is checkmated
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-chess] Fix color in message when White is checkmated
- Date: Sun, 16 Feb 2014 17:38:10 +0000 (UTC)
commit 59ec88b78ac3706967380e955ef947b40c5cbded
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Sat Feb 15 22:11:42 2014 -0600
Fix color in message when White is checkmated
src/gnome-chess.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index fd8eafb..3874b39 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1138,7 +1138,7 @@ public class Application : Gtk.Application
reason = _("Black is in check and cannot move (checkmate).");
else if (game.result == ChessResult.BLACK_WON)
/* Window subtitle when White is checkmated */
- reason = _("Black is in check and cannot move (checkmate).");
+ reason = _("White is in check and cannot move (checkmate).");
else
assert_not_reached ();
break;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]