[gnome-chess] Remove use of deprecated Gtk.Stock



commit f7518350186f1cab3b2087cf4018e77d16deb20e
Author: Michael Catanzaro <mike catanzaro gmail com>
Date:   Sat Aug 3 13:58:00 2013 -0500

    Remove use of deprecated Gtk.Stock
    
    Stock icons have also been deprecated by Gtk+, but aren't yet marked so
    by Vala.  Let's leave these be for now, as I'm not sure how to handle
    icon sensitivity.

 src/gnome-chess.vala |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index 8623655..b7183fe 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1112,7 +1112,7 @@ public class Application : Gtk.Application
                                                             Gtk.ButtonsType.NONE,
                                                             "<span weight=\"bold\" 
size=\"larger\">%s</span>",
                                                             _("Save this game before starting a new one?"));
-            dialog.add_button (Gtk.Stock.CANCEL, Gtk.ResponseType.CANCEL);
+            dialog.add_button (_("_Cancel"), Gtk.ResponseType.CANCEL);
 
             if (game.result == ChessResult.IN_PROGRESS)
             {
@@ -1135,7 +1135,7 @@ public class Application : Gtk.Application
             else if (result == Gtk.ResponseType.YES)
             {
                 /* Your very last chance to save */
-                save_game (Gtk.Stock.DISCARD, Gtk.Stock.SAVE);
+                save_game (_("_Discard"), _("_Save"));
             }
             else if (game.result != ChessResult.IN_PROGRESS)
             {
@@ -1770,7 +1770,7 @@ public class Application : Gtk.Application
         dialog.add (vbox);
     }
     
-    private void save_game (string cancel_button_label = Gtk.Stock.CANCEL, string save_button_label = 
Gtk.Stock.SAVE)
+    private void save_game (string cancel_button_label = N_("_Cancel"), string save_button_label = 
N_("_Save"))
     {
         /* Show active dialog */
         if (save_dialog != null)
@@ -1873,8 +1873,8 @@ public class Application : Gtk.Application
         open_dialog = new Gtk.FileChooserDialog (/* Title of load game dialog */
                                                  _("Load Chess Game"),
                                                  window, Gtk.FileChooserAction.OPEN,
-                                                 Gtk.Stock.CANCEL, Gtk.ResponseType.CANCEL,
-                                                 Gtk.Stock.OPEN, Gtk.ResponseType.OK, null);
+                                                 _("_Cancel"), Gtk.ResponseType.CANCEL,
+                                                 _("_Open"), Gtk.ResponseType.OK, null);
         add_info_bar_to_dialog (open_dialog, out open_dialog_info_bar, out open_dialog_error_label);
 
         open_dialog.file_activated.connect (open_file_cb);        


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