Skip to content

Commit 4d5a8a3

Browse files
alexbruynyalldawson
authored andcommittedMay 6, 2020
[processing] rename Graphics group to Plots as this better reflects
purpose of the algorithms inside it (fix #33310)
1 parent 8bb5553 commit 4d5a8a3

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed
 

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ class BarPlot(QgisAlgorithm):
4343
VALUE_FIELD = 'VALUE_FIELD'
4444

4545
def group(self):
46-
return self.tr('Graphics')
46+
return self.tr('Plots}')
4747

4848
def groupId(self):
49-
return 'graphics'
49+
return 'plots'
5050

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ class BoxPlot(QgisAlgorithm):
4444
MSD = 'MSD'
4545

4646
def group(self):
47-
return self.tr('Graphics')
47+
return self.tr('Plots')
4848

4949
def groupId(self):
50-
return 'graphics'
50+
return 'plots'
5151

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ class MeanAndStdDevPlot(QgisAlgorithm):
4242
VALUE_FIELD = 'VALUE_FIELD'
4343

4444
def group(self):
45-
return self.tr('Graphics')
45+
return self.tr('Plots')
4646

4747
def groupId(self):
48-
return 'graphics'
48+
return 'plots'
4949

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ class PolarPlot(QgisAlgorithm):
4141
VALUE_FIELD = 'VALUE_FIELD'
4242

4343
def group(self):
44-
return self.tr('Graphics')
44+
return self.tr('Plots')
4545

4646
def groupId(self):
47-
return 'graphics'
47+
return 'plots'
4848

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ class RasterLayerHistogram(QgisAlgorithm):
4242
BAND = 'BAND'
4343

4444
def group(self):
45-
return self.tr('Graphics')
45+
return self.tr('Plots')
4646

4747
def groupId(self):
48-
return 'graphics'
48+
return 'plots'
4949

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ class VectorLayerHistogram(QgisAlgorithm):
4242
BINS = 'BINS'
4343

4444
def group(self):
45-
return self.tr('Graphics')
45+
return self.tr('Plots')
4646

4747
def groupId(self):
48-
return 'graphics'
48+
return 'plots'
4949

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ class VectorLayerScatterplot(QgisAlgorithm):
4040
YFIELD = 'YFIELD'
4141

4242
def group(self):
43-
return self.tr('Graphics')
43+
return self.tr('Plots')
4444

4545
def groupId(self):
46-
return 'graphics'
46+
return 'plots'
4747

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ class VectorLayerScatterplot3D(QgisAlgorithm):
4242
ZFIELD = 'ZFIELD'
4343

4444
def group(self):
45-
return self.tr('Graphics')
45+
return self.tr('Plots')
4646

4747
def groupId(self):
48-
return 'graphics'
48+
return 'plots'
4949

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

0 commit comments

Comments
 (0)
Please sign in to comment.