comparison pidgin/plugins/extplacement.c @ 16986:05701825aa7e

Add note about using "By conversation count" for the "New conversations" preference to the extplacement plugin. Hopefully this reduces confusion (including for me).
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 09 May 2007 16:38:20 +0000
parents 3d41d0d7fb9b
children 44b4e8bd759b
comparison
equal deleted inserted replaced
16976:6b516b7eebc5 16986:05701825aa7e
99 frame = purple_plugin_pref_frame_new(); 99 frame = purple_plugin_pref_frame_new();
100 100
101 ppref = purple_plugin_pref_new_with_label(_("Conversation Placement")); 101 ppref = purple_plugin_pref_new_with_label(_("Conversation Placement"));
102 purple_plugin_pref_frame_add(frame, ppref); 102 purple_plugin_pref_frame_add(frame, ppref);
103 103
104 /* Translators: "New conversations" should match the text in the preferences dialog and "By conversation count" should be the same text used above */
105 ppref = purple_plugin_pref_new_with_label(_("Note: The preference for \"New conversations\" must be set to \"By conversation count\"."));
106 purple_plugin_pref_set_type(ppref, PURPLE_PLUGIN_PREF_INFO);
107 purple_plugin_pref_frame_add(frame, ppref);
108
104 ppref = purple_plugin_pref_new_with_name_and_label( 109 ppref = purple_plugin_pref_new_with_name_and_label(
105 "/plugins/gtk/extplacement/placement_number", 110 "/plugins/gtk/extplacement/placement_number",
106 _("Number of conversations per window")); 111 _("Number of conversations per window"));
107 purple_plugin_pref_set_bounds(ppref, 1, 50); 112 purple_plugin_pref_set_bounds(ppref, 1, 50);
108 purple_plugin_pref_frame_add(frame, ppref); 113 purple_plugin_pref_frame_add(frame, ppref);