From kde-commits Sat Jan 29 15:10:36 2005 From: =?utf-8?q?Ingo=20Kl=C3=B6cker?= Date: Sat, 29 Jan 2005 15:10:36 +0000 To: kde-commits Subject: kdepim/kmail Message-Id: <20050129151036.2000A18FC3 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110701144929174 CVS commit by kloecker: Say 'No recipients' instead of '0 recipients' as suggested in the usability report. M +17 -15 recipientseditor.cpp 1.33 --- kdepim/kmail/recipientseditor.cpp #1.32:1.33 @@ -618,5 +618,7 @@ void SideWidget::setTotal( int recipient #endif - mTotalLabel->setText( i18n("1 recipient","%n recipients", recipients ) ); + mTotalLabel->setText( ( recipients == 0 ) + ? i18n("No recipient") + : i18n("1 recipient", "%n recipients", recipients ) ); if ( lines > 1 ) mTotalLabel->show(); else mTotalLabel->hide();