aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2007-02-18 19:02:35 +0000
committerMatthias Andree <matthias.andree@gmx.de>2007-02-18 19:02:35 +0000
commit7c8ef00cb43252aee9597cfee153002178cde117 (patch)
tree7539aa4f6a51613c16265eb1cf91e56e12aee8c8 /driver.c
parentff48fecdcfccf4b65ce18ff588f3b0b43f03dbc1 (diff)
downloadfetchmail-7c8ef00cb43252aee9597cfee153002178cde117.tar.gz
fetchmail-7c8ef00cb43252aee9597cfee153002178cde117.tar.bz2
fetchmail-7c8ef00cb43252aee9597cfee153002178cde117.zip
Fix pluralization in oversized-messages warning.
svn path=/branches/BRANCH_6-3/; revision=5039
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index 2f3b3793..d93c01c2 100644
--- a/driver.c
+++ b/driver.c
@@ -359,11 +359,13 @@ static void send_size_warnings(struct query *ctl)
size = atoi(current->id);
if (ctl->limitflush)
stuff_warning(NULL, ctl,
- GT_(" %d msg %d octets long deleted by fetchmail."),
+ ngettext(" %d message %d octets long deleted by fetchmail.",
+ " %d messages %d octets long deleted by fetchmail.", nbr),
nbr, size);
else
stuff_warning(NULL, ctl,
- GT_(" %d msg %d octets long skipped by fetchmail."),
+ ngettext(" %d message %d octets long skipped by fetchmail.",
+ " %d messages %d octets long skipped by fetchmail.", nbr),
nbr, size);
}
current->val.status.num++;