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();