diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-08-20 12:30:35 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-08-20 12:30:35 +0000 |
commit | bcc9d9aef2e6036ee75b27fb02b3dc723fc885b9 (patch) | |
tree | da1fbe7a4a998f08454f92d3f5e6dc80906647e8 /driver.c | |
parent | ffaa9c2685ac672408db3c10de57253e291f2fec (diff) | |
download | fetchmail-bcc9d9aef2e6036ee75b27fb02b3dc723fc885b9.tar.gz fetchmail-bcc9d9aef2e6036ee75b27fb02b3dc723fc885b9.tar.bz2 fetchmail-bcc9d9aef2e6036ee75b27fb02b3dc723fc885b9.zip |
Fix bogus plural form.
svn path=/trunk/; revision=3930
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1359,16 +1359,16 @@ is restored.")); else if (count != 0) { if (new != -1 && (count - new) > 0) - report_build(stdout, GT_("%d %s (%d %s) for %s"), - count, count > 1 ? GT_("messages") : - GT_("message"), + report_build(stdout, ngettext("%d message (%d %s) for %s", "%d messages (%d %s) for %s", (unsigned long)count), + count, count-new, - GT_("seen"), + ngettext("seen", "seen", (unsigned long)count-new), buf); else - report_build(stdout, GT_("%d %s for %s"), - count, count > 1 ? GT_("messages") : - GT_("message"), buf); + report_build(stdout, ngettext("%d message for %s", + "%d messages for %s", + count), + count, buf); if (bytes == -1) report_complete(stdout, ".\n"); else |