We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 4c41819 commit 94cb854Copy full SHA for 94cb854
python/plugins/processing/algs/gdal/gdaladdo.py
@@ -51,14 +51,14 @@ def __init__(self):
51
super().__init__()
52
53
def initAlgorithm(self, config=None):
54
- self.methods = ((self.tr('Nearest neighbour'), 'nearest'),
+ self.methods = ((self.tr('Nearest Neighbour'), 'nearest'),
55
(self.tr('Average'), 'average'),
56
(self.tr('Gaussian'), 'gauss'),
57
- (self.tr('Cubic convolution'), 'cubic'),
58
- (self.tr('B-Spline convolution'), 'cubicspline'),
59
- (self.tr('Lanczos windowed sinc'), 'lanczos'),
+ (self.tr('Cubic Convolution'), 'cubic'),
+ (self.tr('B-Spline Convolution'), 'cubicspline'),
+ (self.tr('Lanczos Windowed Sinc'), 'lanczos'),
60
(self.tr('Average MP'), 'average_mp'),
61
- (self.tr('Average in mag/phase space'), 'average_magphase'),
+ (self.tr('Average in Mag/Phase Space'), 'average_magphase'),
62
(self.tr('Mode'), 'mode'))
63
64
self.formats = (self.tr('Internal (if possible)'),
0 commit comments