pidgin/pidgin

Message Notification: Drop redundant "Notify for"
release-2.x.y
2016-06-06, Richard Laager
660e41d31deb
Parents 5e5e84e8a798
Children d3430adc96af
Message Notification: Drop redundant "Notify for"

The high level section is "Notify For". We do not need to prefix
individual options with "Notify for".

I intentionally gave these two strings the same mnemonic. Anything
else would have required changing something else. The only good
candidate was "Prepend _string into window title" becoming _w; in
the end, this seemed like the lesser of two evils.

Reported-by: Björn Voigt
--- a/pidgin/plugins/notify.c Sun May 15 05:41:39 2016 -0300
+++ b/pidgin/plugins/notify.c Mon Jun 06 22:16:55 2016 -0500
@@ -718,7 +718,7 @@
G_CALLBACK(type_toggle_cb), "type_im");
ref = toggle;
- toggle = gtk_check_button_new_with_mnemonic(_("\t_Notify for System messages"));
+ toggle = gtk_check_button_new_with_mnemonic(_("\tS_ystem messages"));
gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle),
purple_prefs_get_bool("/plugins/gtk/X11/notify/type_im_sys"));
@@ -746,7 +746,7 @@
g_signal_connect(G_OBJECT(ref), "toggled",
G_CALLBACK(pidgin_toggle_sensitive), toggle);
- toggle = gtk_check_button_new_with_mnemonic(_("\tNotify for _System messages"));
+ toggle = gtk_check_button_new_with_mnemonic(_("\tS_ystem messages"));
gtk_box_pack_start(GTK_BOX(vbox), toggle, FALSE, FALSE, 0);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle),
purple_prefs_get_bool("/plugins/gtk/X11/notify/type_chat_sys"));