pidgin: 8ec6341e: Changes to the docklet mnemonics patch t...

rlaager at pidgin.im rlaager at pidgin.im
Mon May 26 03:01:06 EDT 2008


-----------------------------------------------------------------
Revision: 8ec6341e118da4713e16199b3d4314d6a08693db
Ancestor: bf3f185fecec663137bb818ccf32eb76f15f288a
Author: rlaager at pidgin.im
Date: 2008-05-26T06:50:06
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/8ec6341e118da4713e16199b3d4314d6a08693db

Modified files:
        pidgin/gtkdocklet.c

ChangeLog: 

Changes to the docklet mnemonics patch to make them more consistent with
those in the Tools menu.
Fixes #5916

-------------- next part --------------
============================================================
--- pidgin/gtkdocklet.c	cfaafb3e43e4c83ae104408ee6f9da151ac4fe41
+++ pidgin/gtkdocklet.c	ec86d6c12475d893fa674acedcacbe036136459a
@@ -678,7 +678,7 @@ docklet_menu(void)
 
 	menu = gtk_menu_new();
 
-	menuitem = gtk_check_menu_item_new_with_mnemonic(_("_Show Buddy List"));
+	menuitem = gtk_check_menu_item_new_with_mnemonic(_("Show Buddy _List"));
 	gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/blist/list_visible"));
 	g_signal_connect(G_OBJECT(menuitem), "toggled", G_CALLBACK(docklet_toggle_blist), NULL);
 	gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
@@ -704,7 +704,7 @@ docklet_menu(void)
 
 	pidgin_separator(menu);
 
-	menuitem = pidgin_new_item_from_stock(menu, _("_New Message..."), PIDGIN_STOCK_TOOLBAR_MESSAGE_NEW, G_CALLBACK(pidgin_dialogs_im), NULL, 0, 0, NULL);
+	menuitem = pidgin_new_item_from_stock(menu, _("New _Message..."), PIDGIN_STOCK_TOOLBAR_MESSAGE_NEW, G_CALLBACK(pidgin_dialogs_im), NULL, 0, 0, NULL);
 	if (status == PURPLE_STATUS_OFFLINE)
 		gtk_widget_set_sensitive(menuitem, FALSE);
 
@@ -715,11 +715,11 @@ docklet_menu(void)
 
 	pidgin_new_item_from_stock(menu, _("_Accounts"), NULL, G_CALLBACK(pidgin_accounts_window_show), NULL, 0, 0, NULL);
 	pidgin_new_item_from_stock(menu, _("Plu_gins"), PIDGIN_STOCK_TOOLBAR_PLUGINS, G_CALLBACK(pidgin_plugin_dialog_show), NULL, 0, 0, NULL);
-	pidgin_new_item_from_stock(menu, _("_Preferences"), GTK_STOCK_PREFERENCES, G_CALLBACK(pidgin_prefs_show), NULL, 0, 0, NULL);
+	pidgin_new_item_from_stock(menu, _("Pr_eferences"), GTK_STOCK_PREFERENCES, G_CALLBACK(pidgin_prefs_show), NULL, 0, 0, NULL);
 
 	pidgin_separator(menu);
 
-	menuitem = gtk_check_menu_item_new_with_mnemonic(_("_Mute Sounds"));
+	menuitem = gtk_check_menu_item_new_with_mnemonic(_("Mute _Sounds"));
 	gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/sound/mute"));
 	if (!strcmp(purple_prefs_get_string(PIDGIN_PREFS_ROOT "/sound/method"), "none"))
 		gtk_widget_set_sensitive(GTK_WIDGET(menuitem), FALSE);


More information about the Commits mailing list