Skip to content

Commit

Permalink
Rationalise algorithm groups a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 22, 2017
1 parent 8218f35 commit 2a442c7
Show file tree
Hide file tree
Showing 118 changed files with 128 additions and 128 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/AddTableField.py
Expand Up @@ -43,7 +43,7 @@ class AddTableField(QgisFeatureBasedAlgorithm):
TYPES = [QVariant.Int, QVariant.Double, QVariant.String]

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Aggregate.py
Expand Up @@ -55,7 +55,7 @@ class Aggregate(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def name(self):
return 'aggregate'
Expand Down
Expand Up @@ -37,7 +37,7 @@ def __init__(self):
self.current = 0

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def name(self):
return 'addautoincrementalfield'
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/BasicStatistics.py
Expand Up @@ -81,7 +81,7 @@ def tags(self):
'count,distinct,unique,variance,median,quartile,range,majority,minority').split(',')

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector analysis')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Boundary.py
Expand Up @@ -46,7 +46,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'convex_hull.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def name(self):
return 'boundary'
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/BoundingBox.py
Expand Up @@ -45,7 +45,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'matrix.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/CheckValidity.py
Expand Up @@ -66,7 +66,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'check_geometry.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ConcaveHull.py
Expand Up @@ -50,7 +50,7 @@ class ConcaveHull(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ConvexHull.py
Expand Up @@ -61,7 +61,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'convex_hull.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
Expand Up @@ -41,7 +41,7 @@ class CreateAttributeIndex(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Datasources2Vrt.py
Expand Up @@ -48,7 +48,7 @@ class Datasources2Vrt(QgisAlgorithm):
VRT_STRING = 'VRT_STRING'

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DefineProjection.py
Expand Up @@ -44,7 +44,7 @@ class DefineProjection(QgisAlgorithm):
CRS = 'CRS'

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Delaunay.py
Expand Up @@ -60,7 +60,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'delaunay.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DeleteColumn.py
Expand Up @@ -37,7 +37,7 @@ def tags(self):
return self.tr('drop,delete,remove,fields,columns,attributes').split(',')

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def __init__(self):
super().__init__()
Expand Down
Expand Up @@ -38,7 +38,7 @@ class DeleteDuplicateGeometries(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DeleteHoles.py
Expand Up @@ -45,7 +45,7 @@ def tags(self):
return self.tr('remove,delete,drop,holes,rings,fill').split(',')

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def name(self):
return 'deleteholes'
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DensifyGeometries.py
Expand Up @@ -41,7 +41,7 @@ def tags(self):
return self.tr('add,vertices,points').split(',')

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
Expand Up @@ -37,7 +37,7 @@ class DensifyGeometriesInterval(QgisFeatureBasedAlgorithm):
INTERVAL = 'INTERVAL'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Difference.py
Expand Up @@ -52,7 +52,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'difference.png'))

def group(self):
return self.tr('Vector overlay tools')
return self.tr('Vector overlay')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DropGeometry.py
Expand Up @@ -37,7 +37,7 @@ def tags(self):
return self.tr('remove,drop,delete,geometry,objects').split(',')

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DropMZValues.py
Expand Up @@ -43,7 +43,7 @@ class DropMZValues(QgisFeatureBasedAlgorithm):
DROP_Z_VALUES = 'DROP_Z_VALUES'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/EliminateSelection.py
Expand Up @@ -60,7 +60,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'eliminate.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/EquivalentNumField.py
Expand Up @@ -41,7 +41,7 @@ class EquivalentNumField(QgisAlgorithm):
FIELD = 'FIELD'

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExecuteSQL.py
Expand Up @@ -54,7 +54,7 @@ class ExecuteSQL(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Explode.py
Expand Up @@ -43,7 +43,7 @@ class Explode(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExportGeometryInfo.py
Expand Up @@ -58,7 +58,7 @@ def tags(self):
return self.tr('export,measurements,areas,lengths,perimeters,latitudes,longitudes,x,y,z,extract,points,lines,polygons').split(',')

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExtendLines.py
Expand Up @@ -36,7 +36,7 @@ class ExtendLines(QgisFeatureBasedAlgorithm):
END_DISTANCE = 'END_DISTANCE'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExtentFromLayer.py
Expand Up @@ -61,7 +61,7 @@ def tags(self):
return self.tr('extent,envelope,bounds,bounding,boundary,layer').split(',')

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExtractByLocation.py
Expand Up @@ -49,7 +49,7 @@ def tags(self):
return self.tr('extract,filter,location,intersects,contains,within').split(',')

def group(self):
return self.tr('Vector selection tools')
return self.tr('Vector selection')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExtractNodes.py
Expand Up @@ -54,7 +54,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'extract_nodes.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
Expand Up @@ -47,7 +47,7 @@ class ExtractSpecificNodes(QgisAlgorithm):
NODES = 'NODES'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FieldPyculator.py
Expand Up @@ -55,7 +55,7 @@ class FieldsPyculator(QgisAlgorithm):
TYPES = [QVariant.Int, QVariant.Double, QVariant.String]

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FieldsCalculator.py
Expand Up @@ -58,7 +58,7 @@ class FieldsCalculator(QgisAlgorithm):
TYPES = [QVariant.Double, QVariant.Int, QVariant.String, QVariant.Date]

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FieldsMapper.py
Expand Up @@ -43,7 +43,7 @@ class FieldsMapper(QgisFeatureBasedAlgorithm):
OUTPUT_LAYER = 'OUTPUT_LAYER'

def group(self):
return self.tr('Vector table tools')
return self.tr('Vector table')

def initParameters(self, config=None):

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FindProjection.py
Expand Up @@ -57,7 +57,7 @@ def tags(self):
return self.tr('crs,srs,coordinate,reference,system,guess,estimate,finder,determine').split(',')

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector general')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FixGeometry.py
Expand Up @@ -46,7 +46,7 @@ def tags(self):
return self.tr('repair,invalid,geometry').split(',')

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FixedDistanceBuffer.py
Expand Up @@ -60,7 +60,7 @@ def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'buffer.png'))

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
Expand Up @@ -44,7 +44,7 @@ class GeometryByExpression(QgisFeatureBasedAlgorithm):
EXPRESSION = 'EXPRESSION'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/GeometryConvert.py
Expand Up @@ -46,7 +46,7 @@ class GeometryConvert(QgisAlgorithm):
OUTPUT = 'OUTPUT'

def group(self):
return self.tr('Vector geometry tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/GridLine.py
Expand Up @@ -68,7 +68,7 @@ def tags(self):
return self.tr('grid,lines,vector,create,fishnet').split(',')

def group(self):
return self.tr('Vector creation tools')
return self.tr('Vector creation')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/GridPolygon.py
Expand Up @@ -67,7 +67,7 @@ def tags(self):
return self.tr('grid,lines,vector,create,fishnet').split(',')

def group(self):
return self.tr('Vector creation tools')
return self.tr('Vector creation')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Gridify.py
Expand Up @@ -42,7 +42,7 @@ class Gridify(QgisFeatureBasedAlgorithm):
VSPACING = 'VSPACING'

def group(self):
return self.tr('Vector general tools')
return self.tr('Vector geometry')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/HubDistanceLines.py
Expand Up @@ -64,7 +64,7 @@ class HubDistanceLines(QgisAlgorithm):
]

def group(self):
return self.tr('Vector analysis tools')
return self.tr('Vector analysis')

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/HubDistancePoints.py
Expand Up @@ -61,7 +61,7 @@ class HubDistancePoints(QgisAlgorithm):
]

def group(self):
return self.tr('Vector analysis tools')
return self.tr('Vector analysis')

def __init__(self):
super().__init__()
Expand Down

0 comments on commit 2a442c7

Please sign in to comment.