Skip to content

Commit 94cb854

Browse files
DelazJnyalldawson
authored andcommittedMay 19, 2019
Title case the options
1 parent 4c41819 commit 94cb854

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎python/plugins/processing/algs/gdal/gdaladdo.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ def __init__(self):
5151
super().__init__()
5252

5353
def initAlgorithm(self, config=None):
54-
self.methods = ((self.tr('Nearest neighbour'), 'nearest'),
54+
self.methods = ((self.tr('Nearest Neighbour'), 'nearest'),
5555
(self.tr('Average'), 'average'),
5656
(self.tr('Gaussian'), 'gauss'),
57-
(self.tr('Cubic convolution'), 'cubic'),
58-
(self.tr('B-Spline convolution'), 'cubicspline'),
59-
(self.tr('Lanczos windowed sinc'), 'lanczos'),
57+
(self.tr('Cubic Convolution'), 'cubic'),
58+
(self.tr('B-Spline Convolution'), 'cubicspline'),
59+
(self.tr('Lanczos Windowed Sinc'), 'lanczos'),
6060
(self.tr('Average MP'), 'average_mp'),
61-
(self.tr('Average in mag/phase space'), 'average_magphase'),
61+
(self.tr('Average in Mag/Phase Space'), 'average_magphase'),
6262
(self.tr('Mode'), 'mode'))
6363

6464
self.formats = (self.tr('Internal (if possible)'),

0 commit comments

Comments
 (0)
Please sign in to comment.