Skip to content

Commit 2a442c7

Browse files
committed
Rationalise algorithm groups a bit
1 parent 8218f35 commit 2a442c7

File tree

118 files changed

+128
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+128
-128
lines changed

python/plugins/processing/algs/qgis/AddTableField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class AddTableField(QgisFeatureBasedAlgorithm):
4343
TYPES = [QVariant.Int, QVariant.Double, QVariant.String]
4444

4545
def group(self):
46-
return self.tr('Vector table tools')
46+
return self.tr('Vector table')
4747

4848
def __init__(self):
4949
super().__init__()

python/plugins/processing/algs/qgis/Aggregate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class Aggregate(QgisAlgorithm):
5555
OUTPUT = 'OUTPUT'
5656

5757
def group(self):
58-
return self.tr('Vector geometry tools')
58+
return self.tr('Vector geometry')
5959

6060
def name(self):
6161
return 'aggregate'

python/plugins/processing/algs/qgis/AutoincrementalField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self):
3737
self.current = 0
3838

3939
def group(self):
40-
return self.tr('Vector table tools')
40+
return self.tr('Vector table')
4141

4242
def name(self):
4343
return 'addautoincrementalfield'

python/plugins/processing/algs/qgis/BasicStatistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def tags(self):
8181
'count,distinct,unique,variance,median,quartile,range,majority,minority').split(',')
8282

8383
def group(self):
84-
return self.tr('Vector table tools')
84+
return self.tr('Vector analysis')
8585

8686
def __init__(self):
8787
super().__init__()

python/plugins/processing/algs/qgis/Boundary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def icon(self):
4646
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'convex_hull.png'))
4747

4848
def group(self):
49-
return self.tr('Vector geometry tools')
49+
return self.tr('Vector geometry')
5050

5151
def name(self):
5252
return 'boundary'

python/plugins/processing/algs/qgis/BoundingBox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def icon(self):
4545
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'matrix.png'))
4646

4747
def group(self):
48-
return self.tr('Vector geometry tools')
48+
return self.tr('Vector geometry')
4949

5050
def __init__(self):
5151
super().__init__()

python/plugins/processing/algs/qgis/CheckValidity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def icon(self):
6666
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'check_geometry.png'))
6767

6868
def group(self):
69-
return self.tr('Vector geometry tools')
69+
return self.tr('Vector geometry')
7070

7171
def __init__(self):
7272
super().__init__()

python/plugins/processing/algs/qgis/ConcaveHull.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ConcaveHull(QgisAlgorithm):
5050
OUTPUT = 'OUTPUT'
5151

5252
def group(self):
53-
return self.tr('Vector geometry tools')
53+
return self.tr('Vector geometry')
5454

5555
def __init__(self):
5656
super().__init__()

python/plugins/processing/algs/qgis/ConvexHull.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def icon(self):
6161
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'convex_hull.png'))
6262

6363
def group(self):
64-
return self.tr('Vector geometry tools')
64+
return self.tr('Vector geometry')
6565

6666
def __init__(self):
6767
super().__init__()

python/plugins/processing/algs/qgis/CreateAttributeIndex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class CreateAttributeIndex(QgisAlgorithm):
4141
OUTPUT = 'OUTPUT'
4242

4343
def group(self):
44-
return self.tr('Vector general tools')
44+
return self.tr('Vector general')
4545

4646
def __init__(self):
4747
super().__init__()

python/plugins/processing/algs/qgis/Datasources2Vrt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Datasources2Vrt(QgisAlgorithm):
4848
VRT_STRING = 'VRT_STRING'
4949

5050
def group(self):
51-
return self.tr('Vector general tools')
51+
return self.tr('Vector general')
5252

5353
def __init__(self):
5454
super().__init__()

python/plugins/processing/algs/qgis/DefineProjection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class DefineProjection(QgisAlgorithm):
4444
CRS = 'CRS'
4545

4646
def group(self):
47-
return self.tr('Vector general tools')
47+
return self.tr('Vector general')
4848

4949
def __init__(self):
5050
super().__init__()

python/plugins/processing/algs/qgis/Delaunay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def icon(self):
6060
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'delaunay.png'))
6161

6262
def group(self):
63-
return self.tr('Vector geometry tools')
63+
return self.tr('Vector geometry')
6464

6565
def __init__(self):
6666
super().__init__()

python/plugins/processing/algs/qgis/DeleteColumn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def tags(self):
3737
return self.tr('drop,delete,remove,fields,columns,attributes').split(',')
3838

3939
def group(self):
40-
return self.tr('Vector table tools')
40+
return self.tr('Vector table')
4141

4242
def __init__(self):
4343
super().__init__()

python/plugins/processing/algs/qgis/DeleteDuplicateGeometries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class DeleteDuplicateGeometries(QgisAlgorithm):
3838
OUTPUT = 'OUTPUT'
3939

4040
def group(self):
41-
return self.tr('Vector general tools')
41+
return self.tr('Vector general')
4242

4343
def __init__(self):
4444
super().__init__()

python/plugins/processing/algs/qgis/DeleteHoles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def tags(self):
4545
return self.tr('remove,delete,drop,holes,rings,fill').split(',')
4646

4747
def group(self):
48-
return self.tr('Vector geometry tools')
48+
return self.tr('Vector geometry')
4949

5050
def name(self):
5151
return 'deleteholes'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def tags(self):
4141
return self.tr('add,vertices,points').split(',')
4242

4343
def group(self):
44-
return self.tr('Vector geometry tools')
44+
return self.tr('Vector geometry')
4545

4646
def __init__(self):
4747
super().__init__()

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class DensifyGeometriesInterval(QgisFeatureBasedAlgorithm):
3737
INTERVAL = 'INTERVAL'
3838

3939
def group(self):
40-
return self.tr('Vector geometry tools')
40+
return self.tr('Vector geometry')
4141

4242
def __init__(self):
4343
super().__init__()

python/plugins/processing/algs/qgis/Difference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def icon(self):
5252
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'difference.png'))
5353

5454
def group(self):
55-
return self.tr('Vector overlay tools')
55+
return self.tr('Vector overlay')
5656

5757
def __init__(self):
5858
super().__init__()

python/plugins/processing/algs/qgis/DropGeometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def tags(self):
3737
return self.tr('remove,drop,delete,geometry,objects').split(',')
3838

3939
def group(self):
40-
return self.tr('Vector general tools')
40+
return self.tr('Vector general')
4141

4242
def __init__(self):
4343
super().__init__()

python/plugins/processing/algs/qgis/DropMZValues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class DropMZValues(QgisFeatureBasedAlgorithm):
4343
DROP_Z_VALUES = 'DROP_Z_VALUES'
4444

4545
def group(self):
46-
return self.tr('Vector geometry tools')
46+
return self.tr('Vector geometry')
4747

4848
def __init__(self):
4949
super().__init__()

python/plugins/processing/algs/qgis/EliminateSelection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def icon(self):
6060
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'eliminate.png'))
6161

6262
def group(self):
63-
return self.tr('Vector geometry tools')
63+
return self.tr('Vector geometry')
6464

6565
def __init__(self):
6666
super().__init__()

python/plugins/processing/algs/qgis/EquivalentNumField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class EquivalentNumField(QgisAlgorithm):
4141
FIELD = 'FIELD'
4242

4343
def group(self):
44-
return self.tr('Vector table tools')
44+
return self.tr('Vector table')
4545

4646
def __init__(self):
4747
super().__init__()

python/plugins/processing/algs/qgis/ExecuteSQL.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ExecuteSQL(QgisAlgorithm):
5454
OUTPUT = 'OUTPUT'
5555

5656
def group(self):
57-
return self.tr('Vector general tools')
57+
return self.tr('Vector general')
5858

5959
def __init__(self):
6060
super().__init__()

python/plugins/processing/algs/qgis/Explode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Explode(QgisAlgorithm):
4343
OUTPUT = 'OUTPUT'
4444

4545
def group(self):
46-
return self.tr('Vector geometry tools')
46+
return self.tr('Vector geometry')
4747

4848
def __init__(self):
4949
super().__init__()

python/plugins/processing/algs/qgis/ExportGeometryInfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def tags(self):
5858
return self.tr('export,measurements,areas,lengths,perimeters,latitudes,longitudes,x,y,z,extract,points,lines,polygons').split(',')
5959

6060
def group(self):
61-
return self.tr('Vector table tools')
61+
return self.tr('Vector geometry')
6262

6363
def __init__(self):
6464
super().__init__()

python/plugins/processing/algs/qgis/ExtendLines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ExtendLines(QgisFeatureBasedAlgorithm):
3636
END_DISTANCE = 'END_DISTANCE'
3737

3838
def group(self):
39-
return self.tr('Vector geometry tools')
39+
return self.tr('Vector geometry')
4040

4141
def __init__(self):
4242
super().__init__()

python/plugins/processing/algs/qgis/ExtentFromLayer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def tags(self):
6161
return self.tr('extent,envelope,bounds,bounding,boundary,layer').split(',')
6262

6363
def group(self):
64-
return self.tr('Vector general tools')
64+
return self.tr('Vector general')
6565

6666
def __init__(self):
6767
super().__init__()

python/plugins/processing/algs/qgis/ExtractByLocation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def tags(self):
4949
return self.tr('extract,filter,location,intersects,contains,within').split(',')
5050

5151
def group(self):
52-
return self.tr('Vector selection tools')
52+
return self.tr('Vector selection')
5353

5454
def __init__(self):
5555
super().__init__()

python/plugins/processing/algs/qgis/ExtractNodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def icon(self):
5454
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'extract_nodes.png'))
5555

5656
def group(self):
57-
return self.tr('Vector geometry tools')
57+
return self.tr('Vector geometry')
5858

5959
def __init__(self):
6060
super().__init__()

python/plugins/processing/algs/qgis/ExtractSpecificNodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class ExtractSpecificNodes(QgisAlgorithm):
4747
NODES = 'NODES'
4848

4949
def group(self):
50-
return self.tr('Vector geometry tools')
50+
return self.tr('Vector geometry')
5151

5252
def __init__(self):
5353
super().__init__()

python/plugins/processing/algs/qgis/FieldPyculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class FieldsPyculator(QgisAlgorithm):
5555
TYPES = [QVariant.Int, QVariant.Double, QVariant.String]
5656

5757
def group(self):
58-
return self.tr('Vector table tools')
58+
return self.tr('Vector table')
5959

6060
def __init__(self):
6161
super().__init__()

python/plugins/processing/algs/qgis/FieldsCalculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class FieldsCalculator(QgisAlgorithm):
5858
TYPES = [QVariant.Double, QVariant.Int, QVariant.String, QVariant.Date]
5959

6060
def group(self):
61-
return self.tr('Vector table tools')
61+
return self.tr('Vector table')
6262

6363
def __init__(self):
6464
super().__init__()

python/plugins/processing/algs/qgis/FieldsMapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class FieldsMapper(QgisFeatureBasedAlgorithm):
4343
OUTPUT_LAYER = 'OUTPUT_LAYER'
4444

4545
def group(self):
46-
return self.tr('Vector table tools')
46+
return self.tr('Vector table')
4747

4848
def initParameters(self, config=None):
4949

python/plugins/processing/algs/qgis/FindProjection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def tags(self):
5757
return self.tr('crs,srs,coordinate,reference,system,guess,estimate,finder,determine').split(',')
5858

5959
def group(self):
60-
return self.tr('Vector general tools')
60+
return self.tr('Vector general')
6161

6262
def __init__(self):
6363
super().__init__()

python/plugins/processing/algs/qgis/FixGeometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def tags(self):
4646
return self.tr('repair,invalid,geometry').split(',')
4747

4848
def group(self):
49-
return self.tr('Vector geometry tools')
49+
return self.tr('Vector geometry')
5050

5151
def __init__(self):
5252
super().__init__()

python/plugins/processing/algs/qgis/FixedDistanceBuffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def icon(self):
6060
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'buffer.png'))
6161

6262
def group(self):
63-
return self.tr('Vector geometry tools')
63+
return self.tr('Vector geometry')
6464

6565
def __init__(self):
6666
super().__init__()

python/plugins/processing/algs/qgis/GeometryByExpression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class GeometryByExpression(QgisFeatureBasedAlgorithm):
4444
EXPRESSION = 'EXPRESSION'
4545

4646
def group(self):
47-
return self.tr('Vector geometry tools')
47+
return self.tr('Vector geometry')
4848

4949
def __init__(self):
5050
super().__init__()

python/plugins/processing/algs/qgis/GeometryConvert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class GeometryConvert(QgisAlgorithm):
4646
OUTPUT = 'OUTPUT'
4747

4848
def group(self):
49-
return self.tr('Vector geometry tools')
49+
return self.tr('Vector geometry')
5050

5151
def __init__(self):
5252
super().__init__()

python/plugins/processing/algs/qgis/GridLine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def tags(self):
6868
return self.tr('grid,lines,vector,create,fishnet').split(',')
6969

7070
def group(self):
71-
return self.tr('Vector creation tools')
71+
return self.tr('Vector creation')
7272

7373
def __init__(self):
7474
super().__init__()

python/plugins/processing/algs/qgis/GridPolygon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def tags(self):
6767
return self.tr('grid,lines,vector,create,fishnet').split(',')
6868

6969
def group(self):
70-
return self.tr('Vector creation tools')
70+
return self.tr('Vector creation')
7171

7272
def __init__(self):
7373
super().__init__()

python/plugins/processing/algs/qgis/Gridify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Gridify(QgisFeatureBasedAlgorithm):
4242
VSPACING = 'VSPACING'
4343

4444
def group(self):
45-
return self.tr('Vector general tools')
45+
return self.tr('Vector geometry')
4646

4747
def __init__(self):
4848
super().__init__()

python/plugins/processing/algs/qgis/HubDistanceLines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class HubDistanceLines(QgisAlgorithm):
6464
]
6565

6666
def group(self):
67-
return self.tr('Vector analysis tools')
67+
return self.tr('Vector analysis')
6868

6969
def __init__(self):
7070
super().__init__()

python/plugins/processing/algs/qgis/HubDistancePoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class HubDistancePoints(QgisAlgorithm):
6161
]
6262

6363
def group(self):
64-
return self.tr('Vector analysis tools')
64+
return self.tr('Vector analysis')
6565

6666
def __init__(self):
6767
super().__init__()

0 commit comments

Comments
 (0)