# HG changeset patch # User Richard Laager # Date 1133261480 0 # Node ID 95fd673021f66eeacfd44f75687951a6bd6e1b79 # Parent 868220a1a1b2a6f7247c6b981d7a15b91848159e [gaim-migrate @ 14556] Bartosz Oler completed an ngettext TODO. This looks simple enough, so I'm wondering why it wasn't done before. Maybe that means I'm missing something. committer: Tailor Script diff -r 868220a1a1b2 -r 95fd673021f6 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Tue Nov 29 05:43:12 2005 +0000 +++ b/src/protocols/oscar/oscar.c Tue Nov 29 10:51:20 2005 +0000 @@ -6156,8 +6156,11 @@ SNs = va_arg(ap, char *); va_end(ap); - /* TODO: Need to use ngettext() here */ - secondary = g_strdup_printf(_("The following screen names are associated with %s"), email); + secondary = g_strdup_printf( + ngettext("The following screen name is associated with %s", + "The following screen names are associated with %s", + num), + email); results = gaim_notify_searchresults_new(); column = gaim_notify_searchresults_column_new("Screen name");