Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix translation string
  • Loading branch information
jef-n committed Jan 22, 2019
1 parent 8c24fa8 commit c3fc41e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/gui/qgsattributeform.cpp
Expand Up @@ -478,8 +478,7 @@ void QgsAttributeForm::pushSelectedFeaturesMessage()
if ( count > 0 )
{
mMessageBar->pushMessage( QString(),
tr( "%1 matching %2 selected" ).arg( count )
.arg( count == 1 ? tr( "feature" ) : tr( "features" ) ),
tr( "%n matching feature(s) selected", "matching features", count ),
Qgis::Info,
messageTimeout() );
}
Expand Down
3 changes: 1 addition & 2 deletions src/gui/qgsexpressionselectiondialog.cpp
Expand Up @@ -142,8 +142,7 @@ void QgsExpressionSelectionDialog::pushSelectedFeaturesMessage()
if ( count > 0 )
{
mMessageBar->pushMessage( QString(),
tr( "%1 matching %2 selected" ).arg( count )
.arg( count == 1 ? tr( "feature" ) : tr( "features" ) ),
tr( "%n matching feature(s) selected", "matching features", count ),
Qgis::Info, timeout );
}
else
Expand Down

0 comments on commit c3fc41e

Please sign in to comment.