diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-04-27 19:14:45 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-04-27 19:14:45 +0000 |
commit | 4ddc3c23f325881c81568db173b01226be94ce80 (patch) | |
tree | eb9c486233a3efc3ef0736d0cf1babbb9342f288 /fetchmail.c | |
parent | 52b175062d92f77c650049507ed1f86b70c855e5 (diff) | |
download | fetchmail-4ddc3c23f325881c81568db173b01226be94ce80.tar.gz fetchmail-4ddc3c23f325881c81568db173b01226be94ce80.tar.bz2 fetchmail-4ddc3c23f325881c81568db173b01226be94ce80.zip |
Fix pluralization.
svn path=/trunk/; revision=4048
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 1398a688..f3766b16 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1776,7 +1776,7 @@ static void dump_params (struct runctl *runp, else printf(GT_(" Single-drop mode: ")); - printf(GT_("%d local name(s) recognized.\n"), count); + printf(ngettext("%d local name recognized.\n", "%d local names recognized.\n", count), count); if (outlevel >= O_VERBOSE) { for (idp = ctl->localnames; idp; idp = idp->next) |