From: Jordi Albornoz Date: Sun, 5 Jan 2003 21:19:00 +0000 (+0000) Subject: assign an icon to the detach button, and add useful tooltips to all buttons. X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=4db3effb690ab7ab3aefb7129b9bc27876750bee;p=gtetrinet assign an icon to the detach button, and add useful tooltips to all buttons. --- diff --git a/ChangeLog b/ChangeLog index 43fd4ce..7889f3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-01-05 Jordi Mallach + + * src/commands.c (toolbar): assign an icon to the detach button, + and add useful tooltips to each button. + 2003-01-05 Dani Carbonell * TODO: updated. diff --git a/src/commands.c b/src/commands.c index b116af6..a8f2eac 100644 --- a/src/commands.c +++ b/src/commands.c @@ -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 };