Skip to content

Commit

Permalink
Standardise some algorithm names
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 30, 2017
1 parent e1ce7dd commit d7111b7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DensifyGeometries.py 100644 → 100755
Expand Up @@ -56,7 +56,7 @@ def name(self):
return 'densifygeometries'

def displayName(self):
return self.tr('Densify geometries')
return self.tr('Densify by count')

def outputName(self):
return self.tr('Densified')
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DensifyGeometriesInterval.py 100644 → 100755
Expand Up @@ -52,7 +52,7 @@ def name(self):
return 'densifygeometriesgivenaninterval'

def displayName(self):
return self.tr('Densify geometries given an interval')
return self.tr('Densify by interval')

def outputName(self):
return self.tr('Densified')
Expand Down
2 changes: 1 addition & 1 deletion src/3d/processing/qgsalgorithmtessellate.cpp
Expand Up @@ -28,7 +28,7 @@ QString QgsTessellateAlgorithm::name() const

QString QgsTessellateAlgorithm::displayName() const
{
return QObject::tr( "Tessellate geometry" );
return QObject::tr( "Tessellate" );
}

QStringList QgsTessellateAlgorithm::tags() const
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmfiledownloader.cpp
Expand Up @@ -31,7 +31,7 @@ QString QgsFileDownloaderAlgorithm::name() const

QString QgsFileDownloaderAlgorithm::displayName() const
{
return tr( "File downloader" );
return tr( "Download file" );
}

QStringList QgsFileDownloaderAlgorithm::tags() const
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmsimplify.cpp
Expand Up @@ -26,7 +26,7 @@ QString QgsSimplifyAlgorithm::name() const

QString QgsSimplifyAlgorithm::displayName() const
{
return QObject::tr( "Simplify geometries" );
return QObject::tr( "Simplify" );
}

QStringList QgsSimplifyAlgorithm::tags() const
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmsmooth.cpp
Expand Up @@ -26,7 +26,7 @@ QString QgsSmoothAlgorithm::name() const

QString QgsSmoothAlgorithm::displayName() const
{
return QObject::tr( "Smooth geometries" );
return QObject::tr( "Smooth" );
}

QStringList QgsSmoothAlgorithm::tags() const
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmtranslate.cpp
Expand Up @@ -26,7 +26,7 @@ QString QgsTranslateAlgorithm::name() const

QString QgsTranslateAlgorithm::displayName() const
{
return QObject::tr( "Translate geometry" );
return QObject::tr( "Translate" );
}

QStringList QgsTranslateAlgorithm::tags() const
Expand Down

0 comments on commit d7111b7

Please sign in to comment.