comparison plugins/idle.c @ 12306:5907fb1e58a0

[gaim-migrate @ 14610] Capitalize the I'dle Mak'r menu items committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 03 Dec 2005 19:39:40 +0000
parents 3ef381cdc47e
children 657895c5f3f2
comparison
equal deleted inserted replaced
12305:1504d878be54 12306:5907fb1e58a0
183 actions(GaimPlugin *plugin, gpointer context) 183 actions(GaimPlugin *plugin, gpointer context)
184 { 184 {
185 GList *l = NULL; 185 GList *l = NULL;
186 GaimPluginAction *act = NULL; 186 GaimPluginAction *act = NULL;
187 187
188 act = gaim_plugin_action_new(_("Set account idle time"), 188 act = gaim_plugin_action_new(_("Set Account Idle Time"),
189 idle_action); 189 idle_action);
190 l = g_list_append(l, act); 190 l = g_list_append(l, act);
191 191
192 act = gaim_plugin_action_new(_("Unset account idle time"), 192 act = gaim_plugin_action_new(_("Unset Account Idle Time"),
193 unidle_action); 193 unidle_action);
194 l = g_list_append(l, act); 194 l = g_list_append(l, act);
195 195
196 act = gaim_plugin_action_new( 196 act = gaim_plugin_action_new(
197 _("Unset idle time for all idled accounts"), unidle_all_action); 197 _("Unset Idle Time for All Idled Accounts"), unidle_all_action);
198 l = g_list_append(l, act); 198 l = g_list_append(l, act);
199 199
200 return l; 200 return l;
201 } 201 }
202 202