comparison plugins/statenotify.c @ 9648:2316cb7a115f

[gaim-migrate @ 10496] Bjoern Voigt pointed these out. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 02 Aug 2004 22:21:36 +0000
parents c001be3c330e
children f8e395a054e2
comparison
equal deleted inserted replaced
9647:687572cf09a6 9648:2316cb7a115f
64 GaimPluginPrefFrame *frame; 64 GaimPluginPrefFrame *frame;
65 GaimPluginPref *ppref; 65 GaimPluginPref *ppref;
66 66
67 frame = gaim_plugin_pref_frame_new(); 67 frame = gaim_plugin_pref_frame_new();
68 68
69 ppref = gaim_plugin_pref_new_with_label("Notify When"); 69 ppref = gaim_plugin_pref_new_with_label(_("Notify When"));
70 gaim_plugin_pref_frame_add(frame, ppref); 70 gaim_plugin_pref_frame_add(frame, ppref);
71 71
72 ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_away", "Buddy Goes _Away"); 72 ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_away", _("Buddy Goes _Away"));
73 gaim_plugin_pref_frame_add(frame, ppref); 73 gaim_plugin_pref_frame_add(frame, ppref);
74 74
75 ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_idle", "Buddy Goes _Idle"); 75 ppref = gaim_plugin_pref_new_with_name_and_label("/plugins/core/statenotify/notify_idle", _("Buddy Goes _Idle"));
76 gaim_plugin_pref_frame_add(frame, ppref); 76 gaim_plugin_pref_frame_add(frame, ppref);
77 77
78 return frame; 78 return frame;
79 } 79 }
80 80