]> hydra-www.ietfng.org Git - gtetrinet/commitdiff
assign an icon to the detach button, and add useful tooltips to all buttons.
authorJordi Albornoz <jordi@src.gnome.org>
Sun, 5 Jan 2003 21:19:00 +0000 (21:19 +0000)
committerJordi Albornoz <jordi@src.gnome.org>
Sun, 5 Jan 2003 21:19:00 +0000 (21:19 +0000)
ChangeLog
src/commands.c

index 43fd4ce5d1a46f67dfd40556a9727270399acd2d..7889f3cda6b0ccd79e45d3db6d15dbb9b2025a98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-05  Jordi Mallach  <jordi@sindominio.net>
+
+       * src/commands.c (toolbar): assign an icon to the detach button,
+       and add useful tooltips to each button.
+
 2003-01-05  Dani Carbonell  <bocata@panete.net>
 
        * TODO: updated.
index b116af637a30e02fce52c1224faa24526db81ce6..a8f2eac2157f76789ae5f449bd727fa99dc65383 100644 (file)
@@ -72,17 +72,17 @@ GnomeUIInfo menubar[] = {
 };
 
 GnomeUIInfo toolbar[] = {
-    GNOMEUIINFO_ITEM_STOCK(N_("Connect"), N_("Connect"), connect_command, "gtk-execute"),
-    GNOMEUIINFO_ITEM_STOCK(N_("Disconnect"), N_("Disconnect"), disconnect_command, "gtk-quit"),
+    GNOMEUIINFO_ITEM_STOCK(N_("Connect"), N_("Connect to a server"), connect_command, "gtk-execute"),
+    GNOMEUIINFO_ITEM_STOCK(N_("Disconnect"), N_("Disconnect from the current server"), disconnect_command, "gtk-quit"),
     GNOMEUIINFO_SEPARATOR,
-    GNOMEUIINFO_ITEM_STOCK(N_("Start game"), N_("Start game"), start_command, "gtk-go-forward"),
-    GNOMEUIINFO_ITEM_STOCK(N_("Pause game"), N_("Pause game"), pause_command, "gtk-dialog-warning"),
-    GNOMEUIINFO_ITEM_STOCK(N_("End game"), N_("End game"), end_command, "gtk-stop"),
+    GNOMEUIINFO_ITEM_STOCK(N_("Start game"), N_("Start a new game"), start_command, "gtk-go-forward"),
+    GNOMEUIINFO_ITEM_STOCK(N_("Pause game"), N_("Pause the game"), pause_command, "gtk-dialog-warning"),
+    GNOMEUIINFO_ITEM_STOCK(N_("End game"), N_("End the current game"), end_command, "gtk-stop"),
     GNOMEUIINFO_SEPARATOR,
-    GNOMEUIINFO_ITEM_STOCK(N_("Change team"), N_("Change team"), team_command, "gtk-jump-to"),
+    GNOMEUIINFO_ITEM_STOCK(N_("Change team"), N_("Change your current team name"), team_command, "gtk-jump-to"),
 #ifdef ENABLE_DETACH
     GNOMEUIINFO_SEPARATOR,
-    GNOMEUIINFO_ITEM(N_("Detach page"), NULL, detach_command, NULL),
+    GNOMEUIINFO_ITEM_STOCK(N_("Detach page"), N_("Detach the current notebook page"), detach_command, "gtk-cut"),
 #endif
     GNOMEUIINFO_END
 };