aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
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++;