comparison 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
comparison
equal deleted inserted replaced
6307:55588b222901 6308:a21cf07cd8e1
746 while(child) { 746 while(child) {
747 count++; 747 count++;
748 child = child->next; 748 child = child->next;
749 } 749 }
750 750
751 buf = g_strdup_printf(_("%d buddies from group %s were not " 751 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed "
752 "removed because their accounts were not logged in. These " 752 "because its account was not logged in."
753 "buddies and the group were not removed.\n"), 753 " This buddy and the group were not "
754 count, group->name); 754 "removed.\n",
755 755 "%d buddies from group %s were not "
756 "removed because their accounts were "
757 " not logged in. These buddies and "
758 "the group were not removed.\n", count),
759 count, group->name);
756 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); 760 gaim_notify_error(NULL, NULL, _("Group not removed"), buf);
757 g_free(buf); 761 g_free(buf);
758 return; 762 return;
759 } 763 }
760 764