[gnome-mines] Play again or Start over on replay label https://bugzilla.gnome.org/show_bug.cgi?id=737047



commit 40213b58f29edf6f4f649b61acba34ad5a82aa7c
Author: Robert Roth <robert roth off gmail com>
Date:   Tue Sep 23 22:32:12 2014 +0300

    Play again or Start over on replay label
    https://bugzilla.gnome.org/show_bug.cgi?id=737047

 src/gnome-mines.vala |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)
---
diff --git a/src/gnome-mines.vala b/src/gnome-mines.vala
index b171898..a1c5ac9 100644
--- a/src/gnome-mines.vala
+++ b/src/gnome-mines.vala
@@ -623,7 +623,10 @@ public class Mines : Gtk.Application
     private void explode_cb (Minefield minefield)
     {
         new_game_button.show ();
+
+        replay_button.label = _("Play _Again");
         replay_button.show ();
+
         high_scores_button.show ();
         pause_action.set_enabled (false);
         play_pause_button.hide ();
@@ -642,7 +645,10 @@ public class Mines : Gtk.Application
         else
         {
             new_game_button.show ();
+
+            replay_button.label = _("Play _Again");
             replay_button.show ();
+
             high_scores_button.show ();
             pause_action.set_enabled (false);
             play_pause_button.hide ();
@@ -809,7 +815,9 @@ public class Mines : Gtk.Application
 
     private void display_unpause_button ()
     {
+        replay_button.label = _("St_art Over");
         replay_button.show ();
+
         new_game_button.show ();
 
         play_pause_button.show ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]