Skip to content

Commit

Permalink
fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Dec 10, 2019
1 parent d40a036 commit f803b7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmapplylayerstyle.cpp
Expand Up @@ -46,7 +46,7 @@ QString QgsApplyLayerStyleAlgorithm::groupId() const

QString QgsApplyLayerStyleAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm renames a layer." );
return QObject::tr( "Applies the style to a layer. The style must be defined as QML file." );
}

QgsProcessingAlgorithm::Flags QgsApplyLayerStyleAlgorithm::flags() const
Expand Down
4 changes: 2 additions & 2 deletions src/analysis/processing/qgsalgorithmextentfromlayer.cpp
Expand Up @@ -38,12 +38,12 @@ QStringList QgsExtentFromLayerAlgorithm::tags() const

QString QgsExtentFromLayerAlgorithm::group() const
{
return QObject::tr( "Raster terrain analysis" );
return QObject::tr( "Layer tools" );
}

QString QgsExtentFromLayerAlgorithm::groupId() const
{
return QStringLiteral( "rasterterrainanalysis" );
return QStringLiteral( "layertools" );
}

QString QgsExtentFromLayerAlgorithm::shortHelpString() const
Expand Down
Expand Up @@ -48,7 +48,7 @@ QString QgsNearestNeighbourAnalysisAlgorithm::groupId() const
QString QgsNearestNeighbourAnalysisAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm performs nearest neighbor analysis for a point layer.\n\n"
"Output is generated as an html file with the computed statistical values." );
"Output is generated as an HTML file with the computed statistical values." );
}

QString QgsNearestNeighbourAnalysisAlgorithm::svgIconPath() const
Expand Down

0 comments on commit f803b7b

Please sign in to comment.