diff src/blist.c @ 6308:a21cf07cd8e1

[gaim-migrate @ 6807] Added some ngettext things. IMO, ngettext makes things really ugly. http://sourceforge.net/tracker/?group_id=235&atid=100235&func=detail&aid=775089 committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 26 Jul 2003 17:48:50 +0000
parents 55588b222901
children dd2be7cd66df
line wrap: on
line diff
--- a/src/blist.c	Sat Jul 26 16:11:30 2003 +0000
+++ b/src/blist.c	Sat Jul 26 17:48:50 2003 +0000
@@ -748,11 +748,15 @@
 			child = child->next;
 		}
 
-		buf = g_strdup_printf(_("%d buddies from group %s were not "
-					"removed because their accounts were not logged in.  These "
-					"buddies and the group were not removed.\n"),
-				count, group->name);
-
+		buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed "
+									   "because its account was not logged in."
+									   "  This buddy and the group were not "
+									   "removed.\n", 
+									   "%d buddies from group %s were not "
+									   "removed because their accounts were "
+									   " not logged in.  These buddies and "
+									    "the group were not removed.\n", count),
+							  count, group->name);
 		gaim_notify_error(NULL, NULL, _("Group not removed"), buf);
 		g_free(buf);
 		return;