Skip to content

Commit

Permalink
[processing][needs-docs] Rename "Save Selected Features"
Browse files Browse the repository at this point in the history
to "Extract selected features"

Adds consistency with other extraction algorithms, and fixes
inconsistent capitalization

Fixes #19656
  • Loading branch information
nyalldawson committed Aug 21, 2018
1 parent 5241ff3 commit a7bf4f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/analysis/processing/qgsalgorithmsaveselectedfeatures.cpp
Expand Up @@ -37,12 +37,12 @@ QString QgsSaveSelectedFeatures::name() const

QString QgsSaveSelectedFeatures::displayName() const
{
return QObject::tr( "Save Selected Features" );
return QObject::tr( "Extract selected features" );
}

QStringList QgsSaveSelectedFeatures::tags() const
{
return QObject::tr( "selection,save" ).split( ',' );
return QObject::tr( "selection,save,by" ).split( ',' );
}

QString QgsSaveSelectedFeatures::group() const
Expand Down

0 comments on commit a7bf4f1

Please sign in to comment.