Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] rename Graphics group to Plots as this better reflects
purpose of the algorithms inside it (fix #33310)
  • Loading branch information
alexbruy authored and nyalldawson committed May 6, 2020
1 parent 8bb5553 commit 4d5a8a3
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/BarPlot.py
Expand Up @@ -43,10 +43,10 @@ class BarPlot(QgisAlgorithm):
VALUE_FIELD = 'VALUE_FIELD'

def group(self):
return self.tr('Graphics')
return self.tr('Plots}')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/BoxPlot.py
Expand Up @@ -44,10 +44,10 @@ class BoxPlot(QgisAlgorithm):
MSD = 'MSD'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/MeanAndStdDevPlot.py
Expand Up @@ -42,10 +42,10 @@ class MeanAndStdDevPlot(QgisAlgorithm):
VALUE_FIELD = 'VALUE_FIELD'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/PolarPlot.py
Expand Up @@ -41,10 +41,10 @@ class PolarPlot(QgisAlgorithm):
VALUE_FIELD = 'VALUE_FIELD'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/RasterLayerHistogram.py
Expand Up @@ -42,10 +42,10 @@ class RasterLayerHistogram(QgisAlgorithm):
BAND = 'BAND'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/VectorLayerHistogram.py
Expand Up @@ -42,10 +42,10 @@ class VectorLayerHistogram(QgisAlgorithm):
BINS = 'BINS'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/VectorLayerScatterplot.py
Expand Up @@ -40,10 +40,10 @@ class VectorLayerScatterplot(QgisAlgorithm):
YFIELD = 'YFIELD'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

def __init__(self):
super().__init__()
Expand Down
Expand Up @@ -42,10 +42,10 @@ class VectorLayerScatterplot3D(QgisAlgorithm):
ZFIELD = 'ZFIELD'

def group(self):
return self.tr('Graphics')
return self.tr('Plots')

def groupId(self):
return 'graphics'
return 'plots'

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

0 comments on commit 4d5a8a3

Please sign in to comment.