changeset 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 d947652a0b74
files src/dialogs.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/dialogs.c	Mon Mar 31 19:16:31 2003 +0000
+++ b/src/dialogs.c	Mon Mar 31 19:58:45 2003 +0000
@@ -468,9 +468,9 @@
 
 void show_confirm_del_group(struct group *g)
 {
-     	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?"), 
+     	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?"), 
 			       g->name);
-	do_ask_dialog(_("Remove Group"), text, g, _("Remove Buddy"), do_remove_group, _("Cancel"), NULL, NULL, FALSE);
+	do_ask_dialog(_("Remove Group"), text, g, _("Remove Group"), do_remove_group, _("Cancel"), NULL, NULL, FALSE);
 	g_free(text);
 }