Adjust short help string based on reviewed description

This commit is contained in:
Harrissou Sant-anna 2025-05-14 22:56:19 +02:00 committed by Nyall Dawson
parent 7ab482cb20
commit 48f2dd3f93
4 changed files with 9 additions and 10 deletions

View File

@ -414,8 +414,8 @@ QStringList QgsCellStatisticsPercentileAlgorithm::tags() const
QString QgsCellStatisticsPercentileAlgorithm::shortHelpString() const
{
return QObject::tr( "The Cell stack percentile algorithm returns the cell-wise percentile value of a stack of rasters "
"and writes the results to an output raster. The percentile to return is determined by the percentile input value (ranges between 0 and 1). "
return QObject::tr( "This algorithm generates a raster containing the cell-wise percentile value of a stack of input rasters. "
"The percentile to return is determined by the percentile input value (ranges between 0 and 1). "
"At each cell location, the specified percentile is obtained using the respective value from "
"the stack of all overlaid and sorted cell values of the input rasters.\n\n"
"There are three methods for percentile calculation:"
@ -564,8 +564,7 @@ QStringList QgsCellStatisticsPercentRankFromValueAlgorithm::tags() const
QString QgsCellStatisticsPercentRankFromValueAlgorithm::shortHelpString() const
{
return QObject::tr( "The Cell stack percentrank from value algorithm calculates the cell-wise percentrank value of a stack of rasters based on a single input value "
"and writes them to an output raster.\n\n"
return QObject::tr( "This algorithm generates a raster containing the cell-wise percent rank value of a stack of input rasters based on a single input value.\n\n"
"At each cell location, the specified value is ranked among the respective values in the stack of all overlaid and sorted cell values from the input rasters. "
"For values outside of the stack value distribution, the algorithm returns NoData because the value cannot be ranked among the cell values.\n\n"
"There are two methods for percentile calculation:"
@ -707,8 +706,8 @@ QStringList QgsCellStatisticsPercentRankFromRasterAlgorithm::tags() const
QString QgsCellStatisticsPercentRankFromRasterAlgorithm::shortHelpString() const
{
return QObject::tr( "The Cell stack percentrank from raster layer algorithm calculates the cell-wise percentrank value of a stack of rasters based on an input value raster "
"and writes them to an output raster.\n\n"
return QObject::tr( "This algorithm generates a raster containing the cell-wise percent rank value of a stack of input rasters "
"based on an input value raster.\n\n"
"At each cell location, the current value of the value raster is used ranked among the respective values in the stack of all overlaid and sorted cell values of the input rasters. "
"For values outside of the the stack value distribution, the algorithm returns NoData because the value cannot be ranked among the cell values.\n\n"
"There are two methods for percentile calculation:"

View File

@ -60,7 +60,7 @@ QgsFeatureSink::SinkFlags QgsCentroidAlgorithm::sinkFlags() const
QString QgsCentroidAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm creates a new point layer, with points representing the centroid of the geometries in an input layer.\n\n"
return QObject::tr( "This algorithm creates a new point layer with points representing the centroid of the geometries in an input layer.\n\n"
"The attributes associated to each point in the output layer are the same ones associated to the original features." );
}

View File

@ -49,8 +49,8 @@ QString QgsConstantRasterAlgorithm::groupId() const
QString QgsConstantRasterAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm generates raster layer for given extent and cell "
"size filled with the specified value.\n"
return QObject::tr( "This algorithm generates a raster layer for a given extent and cell "
"size filled with a single constant value.\n"
"Additionally an output data type can be specified. "
"The algorithm will abort if a value has been entered that "
"cannot be represented by the selected output raster data type." );

View File

@ -47,7 +47,7 @@ QString QgsDxfExportAlgorithm::groupId() const
QString QgsDxfExportAlgorithm::shortHelpString() const
{
return QObject::tr( "Exports layers to DXF file. For each layer, you can choose a field whose values are used to split features in generated destination layers in the DXF output.\n\n"
return QObject::tr( "Exports layers to a DXF file. For each layer, you can choose a field whose values are used to split features in generated destination layers in the DXF output.\n\n"
"If no field is chosen, you can still override the output layer name by directly entering a new output layer name in the Configure Layer panel or by preferring layer title (set in layer properties) to layer name." );
}