Skip to content

Commit 158c329

Browse files
committed
fix translation strings
1 parent 7eb7e93 commit 158c329

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

resources/function_help/json/color_mix_rgb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "color_mix_rgb",
33
"type": "function",
4-
"description": "Returns a string representing a color mixing the reg, green, blue, and alpha values of two provided colors based on a given ratio.",
4+
"description": "Returns a string representing a color mixing the red, green, blue, and alpha values of two provided colors based on a given ratio.",
55
"arguments": [
66
{"arg":"color1", "description":"a color string"},
77
{"arg":"color2", "description":"a color string"},

src/analysis/processing/qgsalgorithmsegmentize.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ QString QgsSegmentizeByMaximumAngleAlgorithm::outputName() const
140140
QString QgsSegmentizeByMaximumAngleAlgorithm::shortHelpString() const
141141
{
142142
return QObject::tr( "This algorithm segmentizes a geometry by converting curved sections to linear sections.\n\n"
143-
"The segmentization is performed by specifying the maximum allowed radius angle between vertices"
144-
"on the straightened geometry (e.g the angle of the arc created from the original arc center to consective"
143+
"The segmentization is performed by specifying the maximum allowed radius angle between vertices "
144+
"on the straightened geometry (e.g the angle of the arc created from the original arc center to consecutive "
145145
"output vertices on the linearized geometry).\n\n"
146146
"Non-curved geometries will be retained without change." );
147147
}

src/analysis/raster/qgsrelief.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ gdal::dataset_unique_ptr QgsRelief::openOutputFile( GDALDatasetH inputDataset, G
450450
//use PACKBITS compression for tiffs by default
451451
papszOptions = CSLSetNameValue( papszOptions, "COMPRESS", "PACKBITS" );
452452

453-
//create three band raster (reg, green, blue)
453+
//create three band raster (red, green, blue)
454454
gdal::dataset_unique_ptr outputDataset( GDALCreate( outputDriver, mOutputFile.toUtf8().constData(), xSize, ySize, 3, GDT_Byte, papszOptions ) );
455455
if ( !outputDataset )
456456
{

0 commit comments

Comments
 (0)