aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-07-03 19:20:33 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-07-03 19:20:33 +0000
commit546054f6df80c07ebd9d27e8c679af014e38c2a8 (patch)
tree4047a07a859ab2176da975e96ad0c3f7e2dc315b /imap.c
parent7956b1555138ce0eb84e41b0df7d708fd88129cf (diff)
downloadfetchmail-546054f6df80c07ebd9d27e8c679af014e38c2a8.tar.gz
fetchmail-546054f6df80c07ebd9d27e8c679af014e38c2a8.tar.bz2
fetchmail-546054f6df80c07ebd9d27e8c679af014e38c2a8.zip
i18n fixes, cs.po updates, by Miloslav Trmac.
svn path=/trunk/; revision=4076
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/imap.c b/imap.c
index 6967524f..9ebbe7ab 100644
--- a/imap.c
+++ b/imap.c
@@ -667,7 +667,9 @@ static int imap_getrange(int sock,
if (recentcount == 0)
count = 0;
if (outlevel >= O_DEBUG)
- report(stdout, GT_("%d messages waiting after re-poll\n"), count);
+ report(stdout, ngettext("%d message waiting after re-poll\n",
+ "%d messages waiting after re-poll\n",
+ count), count);
}
else
{
@@ -681,7 +683,9 @@ static int imap_getrange(int sock,
return(ok);
}
else if (outlevel >= O_DEBUG)
- report(stdout, GT_("%d messages waiting after first poll\n"), count);
+ report(stdout, ngettext("%d message waiting after first poll\n",
+ "%d messages waiting after first poll\n",
+ count), count);
/* no messages? then we may need to idle until we get some */
while (count == 0 && do_idle) {
@@ -707,7 +711,9 @@ static int imap_getrange(int sock,
return(ok);
}
if (outlevel >= O_DEBUG)
- report(stdout, GT_("%d messages waiting after expunge\n"), count);
+ report(stdout, ngettext("%d message waiting after expunge\n",
+ "%d messages waiting after expunge\n",
+ count), count);
}
}