Skip to content

Commit

Permalink
fix translation strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Mar 9, 2018
1 parent 7eb7e93 commit 158c329
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/function_help/json/color_mix_rgb
@@ -1,7 +1,7 @@
{
"name": "color_mix_rgb",
"type": "function",
"description": "Returns a string representing a color mixing the reg, green, blue, and alpha values of two provided colors based on a given ratio.",
"description": "Returns a string representing a color mixing the red, green, blue, and alpha values of two provided colors based on a given ratio.",
"arguments": [
{"arg":"color1", "description":"a color string"},
{"arg":"color2", "description":"a color string"},
Expand Down
4 changes: 2 additions & 2 deletions src/analysis/processing/qgsalgorithmsegmentize.cpp
Expand Up @@ -140,8 +140,8 @@ QString QgsSegmentizeByMaximumAngleAlgorithm::outputName() const
QString QgsSegmentizeByMaximumAngleAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm segmentizes a geometry by converting curved sections to linear sections.\n\n"
"The segmentization is performed by specifying the maximum allowed radius angle between vertices"
"on the straightened geometry (e.g the angle of the arc created from the original arc center to consective"
"The segmentization is performed by specifying the maximum allowed radius angle between vertices "
"on the straightened geometry (e.g the angle of the arc created from the original arc center to consecutive "
"output vertices on the linearized geometry).\n\n"
"Non-curved geometries will be retained without change." );
}
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/raster/qgsrelief.cpp
Expand Up @@ -450,7 +450,7 @@ gdal::dataset_unique_ptr QgsRelief::openOutputFile( GDALDatasetH inputDataset, G
//use PACKBITS compression for tiffs by default
papszOptions = CSLSetNameValue( papszOptions, "COMPRESS", "PACKBITS" );

//create three band raster (reg, green, blue)
//create three band raster (red, green, blue)
gdal::dataset_unique_ptr outputDataset( GDALCreate( outputDriver, mOutputFile.toUtf8().constData(), xSize, ySize, 3, GDT_Byte, papszOptions ) );
if ( !outputDataset )
{
Expand Down

0 comments on commit 158c329

Please sign in to comment.