From: tokul Date: Mon, 4 Oct 2004 15:04:20 +0000 (+0000) Subject: converting string to ngettext. you have 1 message or you have more messages X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=1a4cfc0a929494305138c5a89077ebf2b25c0754;p=squirrelmail.git converting string to ngettext. you have 1 message or you have more messages git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8143 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/mail_fetch/fetch.php b/plugins/mail_fetch/fetch.php index 6025c414..b008b51f 100644 --- a/plugins/mail_fetch/fetch.php +++ b/plugins/mail_fetch/fetch.php @@ -210,7 +210,8 @@ sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); continue; } else { $newmsgcount = $Count - $i + 1; - Mail_Fetch_Status(sprintf(_("Login OK: Inbox contains %s messages"), $newmsgcount)); + Mail_Fetch_Status(sprintf(ngettext("Login OK: Inbox contains %s message", + "Login OK: Inbox contains %s messages",$newmsgcount), $newmsgcount)); } Mail_Fetch_Status(_("Fetching UIDL..."));