comparison src/dialogs.c @ 4924:cd6415033718

[gaim-migrate @ 5258] Yay for Sean for being the man! committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 31 Mar 2003 19:58:45 +0000
parents e96261d0dba8
children cfeab08d4be9
comparison
equal deleted inserted replaced
4923:e96261d0dba8 4924:cd6415033718
466 g_free(text); 466 g_free(text);
467 } 467 }
468 468
469 void show_confirm_del_group(struct group *g) 469 void show_confirm_del_group(struct group *g)
470 { 470 {
471 char *text = g_strdup_printf(_("You are about to remove he group %s and all its members from your buddy list. Do you want to continue?"), 471 char *text = g_strdup_printf(_("You are about to remove the group %s and all its members from your buddy list. Do you want to continue?"),
472 g->name); 472 g->name);
473 do_ask_dialog(_("Remove Group"), text, g, _("Remove Buddy"), do_remove_group, _("Cancel"), NULL, NULL, FALSE); 473 do_ask_dialog(_("Remove Group"), text, g, _("Remove Group"), do_remove_group, _("Cancel"), NULL, NULL, FALSE);
474 g_free(text); 474 g_free(text);
475 } 475 }
476 476
477 /*------------------------------------------------------------------------*/ 477 /*------------------------------------------------------------------------*/
478 /* The dialog for getting an error */ 478 /* The dialog for getting an error */