comparison plugins/extplacement.c @ 9217:6e9e9e7b8e1e

[gaim-migrate @ 10013] (13:13:08) nosnilmot: I guess windows users might want ExtPlacement, and i18n users might want all strings translated :) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 06 Jun 2004 17:18:27 +0000
parents 6b96a5a13e68
children 45d2ad4ac1c1
comparison
equal deleted inserted replaced
9216:d3e878162771 9217:6e9e9e7b8e1e
104 GaimPluginPrefFrame *frame; 104 GaimPluginPrefFrame *frame;
105 GaimPluginPref *ppref; 105 GaimPluginPref *ppref;
106 106
107 frame = gaim_plugin_pref_frame_new(); 107 frame = gaim_plugin_pref_frame_new();
108 108
109 ppref = gaim_plugin_pref_new_with_label("Conversation Placement"); 109 ppref = gaim_plugin_pref_new_with_label(_("Conversation Placement"));
110 gaim_plugin_pref_frame_add(frame, ppref); 110 gaim_plugin_pref_frame_add(frame, ppref);
111 111
112 ppref = gaim_plugin_pref_new_with_name_and_label( 112 ppref = gaim_plugin_pref_new_with_name_and_label(
113 "/plugins/gtk/extplacement/placement_number", 113 "/plugins/gtk/extplacement/placement_number",
114 "Number of conversations per window"); 114 _("Number of conversations per window"));
115 gaim_plugin_pref_set_bounds(ppref, 1, 50); 115 gaim_plugin_pref_set_bounds(ppref, 1, 50);
116 gaim_plugin_pref_frame_add(frame, ppref); 116 gaim_plugin_pref_frame_add(frame, ppref);
117 117
118 return frame; 118 return frame;
119 } 119 }