mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-28 00:17:30 -05:00
Standardise some algorithm names
This commit is contained in:
parent
e1ce7dda70
commit
d7111b7849
2
python/plugins/processing/algs/qgis/DensifyGeometries.py
Normal file → Executable file
2
python/plugins/processing/algs/qgis/DensifyGeometries.py
Normal file → Executable file
@ -56,7 +56,7 @@ class DensifyGeometries(QgisFeatureBasedAlgorithm):
|
||||
return 'densifygeometries'
|
||||
|
||||
def displayName(self):
|
||||
return self.tr('Densify geometries')
|
||||
return self.tr('Densify by count')
|
||||
|
||||
def outputName(self):
|
||||
return self.tr('Densified')
|
||||
|
2
python/plugins/processing/algs/qgis/DensifyGeometriesInterval.py
Normal file → Executable file
2
python/plugins/processing/algs/qgis/DensifyGeometriesInterval.py
Normal file → Executable file
@ -52,7 +52,7 @@ class DensifyGeometriesInterval(QgisFeatureBasedAlgorithm):
|
||||
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')
|
||||
|
@ -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
|
||||
|
@ -31,7 +31,7 @@ QString QgsFileDownloaderAlgorithm::name() const
|
||||
|
||||
QString QgsFileDownloaderAlgorithm::displayName() const
|
||||
{
|
||||
return tr( "File downloader" );
|
||||
return tr( "Download file" );
|
||||
}
|
||||
|
||||
QStringList QgsFileDownloaderAlgorithm::tags() const
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user