Mercurial > pidgin
diff 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 |
line wrap: on
line diff
--- a/src/conversation.c Mon Dec 06 00:34:42 2004 +0000 +++ b/src/conversation.c Mon Dec 06 01:03:38 2004 +0000 @@ -2215,6 +2215,10 @@ } if (size > 10) + /* + * This should probably use ngettext(), but this function + * isn't called from anywhere, so I'm going to leave it. + */ g_snprintf(tmp, sizeof(tmp), _("(+%d more)"), size - 10);
