mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-15 00:07:25 -05:00
[processing] rename Graphics group to Plots as this better reflects
purpose of the algorithms inside it (fix #33310)
This commit is contained in:
parent
8bb55536fd
commit
4d5a8a391c
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
@ -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__()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user