comparison src/conversation.c @ 10324:1034e77ff0ce

[gaim-migrate @ 11531] Attempt to fix a pluralization translation problem pointed out by Danilo Segan. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 06 Dec 2004 01:03:38 +0000
parents a05868a7920e
children 655c48791b3c
comparison
equal deleted inserted replaced
10323:bb2514e075db 10324:1034e77ff0ce
2213 if (i < max - 1) 2213 if (i < max - 1)
2214 g_strlcat(tmp, ", ", sizeof(tmp)); 2214 g_strlcat(tmp, ", ", sizeof(tmp));
2215 } 2215 }
2216 2216
2217 if (size > 10) 2217 if (size > 10)
2218 /*
2219 * This should probably use ngettext(), but this function
2220 * isn't called from anywhere, so I'm going to leave it.
2221 */
2218 g_snprintf(tmp, sizeof(tmp), 2222 g_snprintf(tmp, sizeof(tmp),
2219 _("(+%d more)"), size - 10); 2223 _("(+%d more)"), size - 10);
2220 2224
2221 g_snprintf(tmp, sizeof(tmp), _(" left the room (%s)."), reason); 2225 g_snprintf(tmp, sizeof(tmp), _(" left the room (%s)."), reason);
2222 2226