You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// for extra safety to make sure we are not removing geometries by accident
7358
-
int res = QMessageBox::warning( mMapCanvas, tr( "Delete %1 features on layer \"%2\"").arg( QString::number( vlayer->selectedFeatureCount() ), vlayer->name() ),
7358
+
int res = QMessageBox::warning( mMapCanvas, tr( "Delete %n feature(s) on layer \"%1\"", nullptr, numberOfSelectedFeatures ).arg( vlayer->name() ),
7359
7359
tr( "Some of the selected features are outside of the current map view. Would you still like to continue?" ),
tr( "A problem occurred during deletion of %1 feature(s)" ).arg( numberOfSelectedFeatures - deletedCount ),
7371
+
tr( "A problem occurred during deletion on layer \"%1\". %n feature(s) not deleted.", nullptr, numberOfSelectedFeatures - deletedCount ).arg( vlayer->name() ),
0 commit comments