[Goodies-commits] r6443 - in sion/trunk: . src

Enrico Troeger enrico at xfce.org
Mon Jan 12 20:19:26 CET 2009


Author: enrico
Date: 2009-01-12 19:19:26 +0000 (Mon, 12 Jan 2009)
New Revision: 6443

Modified:
   sion/trunk/ChangeLog
   sion/trunk/src/window.c
Log:
Add tooltips for toolbar items.

Modified: sion/trunk/ChangeLog
===================================================================
--- sion/trunk/ChangeLog	2009-01-12 19:19:21 UTC (rev 6442)
+++ sion/trunk/ChangeLog	2009-01-12 19:19:26 UTC (rev 6443)
@@ -5,6 +5,8 @@
  * src/preferencesdialog.c:
    Add a separator between the heading and the content in the prefs
    dialog to make it look more like the original.
+ * src/window.c:
+   Add tooltips for toolbar items.
 
 
 2009-01-11  Enrico Tröger  <enrico(at)xfce(dot)org>

Modified: sion/trunk/src/window.c
===================================================================
--- sion/trunk/src/window.c	2009-01-12 19:19:21 UTC (rev 6442)
+++ sion/trunk/src/window.c	2009-01-12 19:19:26 UTC (rev 6443)
@@ -1030,11 +1030,13 @@
 		{ "CreateBookmark", GTK_STOCK_ADD,
 			_("Create _Bookmark"), "<Ctrl>n", NULL, G_CALLBACK(action_create_bookmark_cb) },
 		{ "EditBookmarks", GTK_STOCK_EDIT,
-			_("_Edit Bookmarks"), "<Ctrl>b", NULL, G_CALLBACK(action_bookmark_edit_cb) },
+			_("_Edit Bookmarks"), "<Ctrl>b", _("Open the bookmark manager to add, edit or delete bookmarks"), G_CALLBACK(action_bookmark_edit_cb) },
 		{ "Connect", GTK_STOCK_CONNECT, NULL, NULL, NULL, G_CALLBACK(action_mount_cb) },
-		{ "Disconnect", GTK_STOCK_DISCONNECT, NULL, NULL, NULL, G_CALLBACK(action_unmount_cb) },
-		{ "Open", GTK_STOCK_OPEN, NULL, "<Ctrl>o", NULL, G_CALLBACK(action_open_cb) },
-		{ "Quit", GTK_STOCK_QUIT, NULL, "<Ctrl>q", NULL, G_CALLBACK(action_quit_cb) },
+		{ "Disconnect", GTK_STOCK_DISCONNECT, NULL, NULL,
+			_("Disconnect the selected resource"), G_CALLBACK(action_unmount_cb) },
+		{ "Open", GTK_STOCK_OPEN, NULL, "<Ctrl>o",
+			_("Open the selection resource with a file manager"), G_CALLBACK(action_open_cb) },
+		{ "Quit", GTK_STOCK_QUIT, NULL, "<Ctrl>q", _("Quit Sion"), G_CALLBACK(action_quit_cb) },
 		{ "About", GTK_STOCK_ABOUT, NULL, NULL, NULL, G_CALLBACK(action_about_cb) }
 	};
 	const guint entries_n = G_N_ELEMENTS(entries);




More information about the Goodies-commits mailing list