From 1a4cfc0a929494305138c5a89077ebf2b25c0754 Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 4 Oct 2004 15:04:20 +0000 Subject: [PATCH] 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 --- plugins/mail_fetch/fetch.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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...")); -- 2.25.1