Index: src/gui/qgssearchquerybuilder.cpp =================================================================== --- src/gui/qgssearchquerybuilder.cpp (revision 6347) +++ src/gui/qgssearchquerybuilder.cpp (working copy) @@ -127,7 +127,7 @@ QString str; if (count) - str.sprintf(tr("Found %d matching features."), count); + str.sprintf(tr("Found %d matching features.","",count), count); else str = tr("No matching features found."); QMessageBox::information(this, tr("Search results"), str); Index: src/gui/qgsattributetabledisplay.cpp =================================================================== --- src/gui/qgsattributetabledisplay.cpp (revision 6347) +++ src/gui/qgsattributetabledisplay.cpp (working copy) @@ -351,7 +351,7 @@ QString str; if (mSearchIds.size()) - str.sprintf(tr("Found %d matching features."), mSearchIds.size()); + str.sprintf(tr("Found %d matching features.","", mSearchIds.size()), mSearchIds.size()); else str = tr("No matching features found."); QMessageBox::information(this, tr("Search results"), str); Index: src/gui/qgsserversourceselect.cpp =================================================================== --- src/gui/qgsserversourceselect.cpp (revision 6347) +++ src/gui/qgsserversourceselect.cpp (working copy) @@ -572,7 +572,7 @@ QSet crsFilter = mWmsProvider->supportedCrsForLayers(newSelectedLayers); gbCRS->setTitle( - QString( tr("Coordinate Reference System (%1 available)") ) + QString( tr("Coordinate Reference System (%1 available)", "", crsFilter.count() ) ) .arg( crsFilter.count() ) ); Index: src/core/qgshttptransaction.cpp =================================================================== --- src/core/qgshttptransaction.cpp (revision 6347) +++ src/core/qgshttptransaction.cpp (working copy) @@ -431,7 +431,7 @@ QgsDebugMsg("QgsHttpTransaction::networkTimedOut: entering."); mError = QString(tr("Network timed out after %1 seconds of inactivity.\n" - "This may be a problem in your network connection or at the WMS server.") + "This may be a problem in your network connection or at the WMS server.","", NETWORK_TIMEOUT_MSEC/1000) ).arg(NETWORK_TIMEOUT_MSEC/1000); QgsDebugMsg("QgsHttpTransaction::getSynchronously: Setting httpactive = FALSE");