# HG changeset patch # User Richard Laager # Date 1133261480 0 # Node ID af73b85cad3da0ec0ed5428061d648d92a56c49e # Parent 5025434b18f882a183d0a84b7948da23653c571d [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. diff -r 5025434b18f8 -r af73b85cad3d 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");