[four-in-a-row] Tweak status messages
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [four-in-a-row] Tweak status messages
- Date: Fri, 24 Jan 2014 02:42:37 +0000 (UTC)
commit 656caa3fcce38d9276c6245c4068649e117c48b2
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Thu Jan 23 20:39:27 2014 -0600
Tweak status messages
src/main.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/main.c b/src/main.c
index d7e5f4d..00edd67 100644
--- a/src/main.c
+++ b/src/main.c
@@ -510,7 +510,7 @@ prompt_player (void)
if (score[NOBODY] == 0) {
set_status_message (NULL);
} else {
- set_status_message (_("It's a draw!"));
+ set_status_message (_("It’s a draw!"));
}
return;
}
@@ -521,12 +521,12 @@ prompt_player (void)
if (gameover)
set_status_message (_("You win!"));
else
- set_status_message (_("It is your move."));
+ set_status_message (_("Your Turn"));
} else {
if (gameover)
set_status_message (_("I win!"));
else
- set_status_message (_("Thinking..."));
+ set_status_message (_("I’m Thinking…"));
}
break;
case 2:
@@ -540,11 +540,11 @@ prompt_player (void)
str = g_strdup_printf (_("%s wins!"), who);
}
if (player_active) {
- set_status_message (_("It is your move."));
+ set_status_message (_("Your Turn"));
return;
} else {
- str = g_strdup_printf (_("Waiting for %s to move."), who);
+ str = g_strdup_printf (_("%s’s Turn"), who);
}
set_status_message (str);
@@ -627,7 +627,7 @@ on_game_hint (GSimpleAction *action, GVariant *parameter, gpointer data)
g_simple_action_set_enabled (G_SIMPLE_ACTION (hint_action), FALSE);
g_simple_action_set_enabled (G_SIMPLE_ACTION (undo_action), FALSE);
- set_status_message (_("Thinking..."));
+ set_status_message (_("I’m Thinking…"));
vstr[0] = vlevel[LEVEL_STRONG];
c = playgame (vstr, vboard) - 1;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]