Skip to content

Commit

Permalink
Fix plural modeler tool -> modeler toolS
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry authored and nyalldawson committed Nov 28, 2017
1 parent e34d7fb commit d612364
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmloadlayer.cpp
Expand Up @@ -41,7 +41,7 @@ QStringList QgsLoadLayerAlgorithm::tags() const

QString QgsLoadLayerAlgorithm::group() const
{
return QObject::tr( "Modeler tool" );
return QObject::tr( "Modeler tools" );
}

QString QgsLoadLayerAlgorithm::shortHelpString() const
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmloadlayer.h
Expand Up @@ -26,7 +26,7 @@
///@cond PRIVATE

/**
* Native rename layer algorithm.
* Native load layer algorithm.
*/
class QgsLoadLayerAlgorithm : public QgsProcessingAlgorithm
{
Expand Down
4 changes: 2 additions & 2 deletions src/analysis/processing/qgsalgorithmrenamelayer.cpp
Expand Up @@ -36,12 +36,12 @@ QString QgsRenameLayerAlgorithm::displayName() const

QStringList QgsRenameLayerAlgorithm::tags() const
{
return QObject::tr( "change,layer,name" ).split( ',' );
return QObject::tr( "change,layer,name,title" ).split( ',' );
}

QString QgsRenameLayerAlgorithm::group() const
{
return QObject::tr( "Modeler tool" );
return QObject::tr( "Modeler tools" );
}

QString QgsRenameLayerAlgorithm::shortHelpString() const
Expand Down
Expand Up @@ -41,7 +41,7 @@ QStringList QgsStringConcatenationAlgorithm::tags() const

QString QgsStringConcatenationAlgorithm::group() const
{
return QObject::tr( "Modeler tool" );
return QObject::tr( "Modeler tools" );
}

QString QgsStringConcatenationAlgorithm::shortHelpString() const
Expand Down

0 comments on commit d612364

Please sign in to comment.