Skip to content

Commit d7111b7

Browse files
committedNov 30, 2017
Standardise some algorithm names
1 parent e1ce7dd commit d7111b7

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
 

‎python/plugins/processing/algs/qgis/DensifyGeometries.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def name(self):
5656
return 'densifygeometries'
5757

5858
def displayName(self):
59-
return self.tr('Densify geometries')
59+
return self.tr('Densify by count')
6060

6161
def outputName(self):
6262
return self.tr('Densified')

‎python/plugins/processing/algs/qgis/DensifyGeometriesInterval.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def name(self):
5252
return 'densifygeometriesgivenaninterval'
5353

5454
def displayName(self):
55-
return self.tr('Densify geometries given an interval')
55+
return self.tr('Densify by interval')
5656

5757
def outputName(self):
5858
return self.tr('Densified')

‎src/3d/processing/qgsalgorithmtessellate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ QString QgsTessellateAlgorithm::name() const
2828

2929
QString QgsTessellateAlgorithm::displayName() const
3030
{
31-
return QObject::tr( "Tessellate geometry" );
31+
return QObject::tr( "Tessellate" );
3232
}
3333

3434
QStringList QgsTessellateAlgorithm::tags() const

‎src/analysis/processing/qgsalgorithmfiledownloader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ QString QgsFileDownloaderAlgorithm::name() const
3131

3232
QString QgsFileDownloaderAlgorithm::displayName() const
3333
{
34-
return tr( "File downloader" );
34+
return tr( "Download file" );
3535
}
3636

3737
QStringList QgsFileDownloaderAlgorithm::tags() const

‎src/analysis/processing/qgsalgorithmsimplify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ QString QgsSimplifyAlgorithm::name() const
2626

2727
QString QgsSimplifyAlgorithm::displayName() const
2828
{
29-
return QObject::tr( "Simplify geometries" );
29+
return QObject::tr( "Simplify" );
3030
}
3131

3232
QStringList QgsSimplifyAlgorithm::tags() const

‎src/analysis/processing/qgsalgorithmsmooth.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ QString QgsSmoothAlgorithm::name() const
2626

2727
QString QgsSmoothAlgorithm::displayName() const
2828
{
29-
return QObject::tr( "Smooth geometries" );
29+
return QObject::tr( "Smooth" );
3030
}
3131

3232
QStringList QgsSmoothAlgorithm::tags() const

‎src/analysis/processing/qgsalgorithmtranslate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ QString QgsTranslateAlgorithm::name() const
2626

2727
QString QgsTranslateAlgorithm::displayName() const
2828
{
29-
return QObject::tr( "Translate geometry" );
29+
return QObject::tr( "Translate" );
3030
}
3131

3232
QStringList QgsTranslateAlgorithm::tags() const

0 commit comments

Comments
 (0)
Please sign in to comment.