diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2007-02-18 19:02:35 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2007-02-18 19:02:35 +0000 |
commit | 7c8ef00cb43252aee9597cfee153002178cde117 (patch) | |
tree | 7539aa4f6a51613c16265eb1cf91e56e12aee8c8 /driver.c | |
parent | ff48fecdcfccf4b65ce18ff588f3b0b43f03dbc1 (diff) | |
download | fetchmail-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.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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++; |