Skip to content

Commit 6cb5c60

Browse files
committed
fix numeric translation
1 parent 8fb37aa commit 6cb5c60

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/qgsselectbyformdialog.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ void QgsSelectByFormDialog::zoomToFeatures( const QString& filter )
103103
if ( mMessageBar )
104104
{
105105
mMessageBar->pushMessage( QString(),
106-
tr( "Zoomed to %1 matching %2" ).arg( featureCount )
107-
.arg( featureCount == 1 ? tr( "feature" ) : tr( "features" ) ),
106+
tr( "Zoomed to %n matching feature(s)", "number of matching features", featureCount ),
108107
QgsMessageBar::INFO,
109108
timeout );
110109
}

0 commit comments

Comments
 (0)