comparison pidgin/gtkdialogs.c @ 32810:d288f5215a9a

Add purple_contact_get_contact_size().
author andrew.victor@mxit.com
date Mon, 31 Oct 2011 20:35:39 +0000
parents 76096c42f558
children
comparison
equal deleted inserted replaced
32809:76096c42f558 32810:d288f5215a9a
1193 "You are about to remove the contact containing %s " 1193 "You are about to remove the contact containing %s "
1194 "and %d other buddy from your buddy list. Do you " 1194 "and %d other buddy from your buddy list. Do you "
1195 "want to continue?", 1195 "want to continue?",
1196 "You are about to remove the contact containing %s " 1196 "You are about to remove the contact containing %s "
1197 "and %d other buddies from your buddy list. Do you " 1197 "and %d other buddies from your buddy list. Do you "
1198 "want to continue?", contact->totalsize - 1), 1198 "want to continue?", purple_contact_get_contact_size(contact, TRUE) - 1),
1199 purple_buddy_get_name(buddy), contact->totalsize - 1); 1199 purple_buddy_get_name(buddy), purple_contact_get_contact_size(contact, TRUE) - 1);
1200 1200
1201 purple_request_action(contact, NULL, _("Remove Contact"), text, 0, 1201 purple_request_action(contact, NULL, _("Remove Contact"), text, 0,
1202 NULL, purple_contact_get_alias(contact), NULL, 1202 NULL, purple_contact_get_alias(contact), NULL,
1203 contact, 2, 1203 contact, 2,
1204 _("_Remove Contact"), G_CALLBACK(pidgin_dialogs_remove_contact_cb), 1204 _("_Remove Contact"), G_CALLBACK(pidgin_dialogs_remove_contact_cb),