Skip to content

Commit

Permalink
Added missing space
Browse files Browse the repository at this point in the history
 Line 746 : "and %3as well." should probably be "and %3 as well."

Should probably be backported to 3.10. Not sure though.
  • Loading branch information
DiGro authored and nyalldawson committed May 15, 2020
1 parent 884f507 commit b665a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsrelationeditorwidget.cpp
Expand Up @@ -743,7 +743,7 @@ void QgsRelationEditorWidget::deleteFeatures( const QgsFeatureIds &featureids )

// for extra safety to make sure we know that the delete can have impact on children and joins
int res = QMessageBox::question( this, tr( "Delete at least %1 feature(s) on other layer(s)" ).arg( childrenCount ),
tr( "Delete %1 feature(s) on layer \"%2\" and %3as well.\nAnd all the further descendants of them.\nDelete these features?" ).arg( featureids.count() ).arg( layer->name() ).arg( childrenInfo ),
tr( "Delete %1 feature(s) on layer \"%2\" and %3 as well.\nAnd all the further descendants of them.\nDelete these features?" ).arg( featureids.count() ).arg( layer->name() ).arg( childrenInfo ),
QMessageBox::Yes | QMessageBox::No );
if ( res != QMessageBox::Yes )
deleteFeatures = false;
Expand Down

0 comments on commit b665a46

Please sign in to comment.