[gnome-chess] Always capitalize the window title
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-chess] Always capitalize the window title
- Date: Tue, 7 Jan 2014 16:51:59 +0000 (UTC)
commit f81305522c8d7811607fc0737a26ef8a3f4eae5e
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Tue Jan 7 10:12:26 2014 -0600
Always capitalize the window title
src/gnome-chess.vala | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index 21d3de6..f2efac1 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1078,22 +1078,22 @@ public class Application : Gtk.Application
switch (game.result)
{
case ChessResult.WHITE_WON:
- /* Message display when the white player wins */
- title = _("White wins");
+ /* Window title when the white player wins */
+ title = _("White Wins");
pgn_game.result = PGNGame.RESULT_WHITE;
break;
case ChessResult.BLACK_WON:
- /* Message display when the black player wins */
- title = _("Black wins");
+ /* Window title when the black player wins */
+ title = _("Black Wins");
pgn_game.result = PGNGame.RESULT_BLACK;
break;
case ChessResult.DRAW:
- /* Message display when the game is drawn */
- title = _("Game is drawn");
+ /* Window title when the game is drawn */
+ title = _("Game is Drawn");
pgn_game.result = PGNGame.RESULT_DRAW;
break;
case ChessResult.BUG:
- /* Message display when the game cannot continue */
+ /* Window title when the game cannot continue */
title = _("Oops! Something has gone wrong.");
/* don't set the pgn_game result; these are standards */
break;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]