Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix and rephrase translation string
  • Loading branch information
jef-n committed May 14, 2020
1 parent 2e72f53 commit 25f332c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsattributetabledialog.cpp
Expand Up @@ -878,8 +878,8 @@ void QgsAttributeTableDialog::deleteFeature( const QgsFeatureId fid )
}

// 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 %3 feature(s) on other layer(s)" ).arg( childrenCount ),
tr( "Delete of feature on layer \"%2\" and %3as well.\nAnd all the further descendants of them.\nDelete these features?" ).arg( mLayer->name() ).arg( childrenInfo ),
int res = QMessageBox::question( this, tr( "Delete at least %1 feature(s) on other layer(s)" ).arg( childrenCount ),
tr( "Delete of feature on layer \"%1\", %2 as well\nand all of its other descendants.\nDelete these features?" ).arg( mLayer->name() ).arg( childrenInfo ),
QMessageBox::Yes | QMessageBox::No );
if ( res != QMessageBox::Yes )
return;
Expand Down

0 comments on commit 25f332c

Please sign in to comment.