@@ -63,18 +63,18 @@ def __init__(self):
6363 super ().__init__ ()
6464
6565 def initAlgorithm (self , config = None ):
66- self .methods = ((self .tr ('Nearest neighbour ' ), 'near' ),
66+ self .methods = ((self .tr ('Nearest Neighbour ' ), 'near' ),
6767 (self .tr ('Bilinear' ), 'bilinear' ),
6868 (self .tr ('Cubic' ), 'cubic' ),
69- (self .tr ('Cubic spline ' ), 'cubicspline' ),
70- (self .tr ('Lanczos windowed sinc ' ), 'lanczos' ),
69+ (self .tr ('Cubic Spline ' ), 'cubicspline' ),
70+ (self .tr ('Lanczos Windowed Sinc ' ), 'lanczos' ),
7171 (self .tr ('Average' ), 'average' ),
7272 (self .tr ('Mode' ), 'mode' ),
7373 (self .tr ('Maximum' ), 'max' ),
7474 (self .tr ('Minimum' ), 'min' ),
7575 (self .tr ('Median' ), 'med' ),
76- (self .tr ('First quartile ' ), 'q1' ),
77- (self .tr ('Third quartile ' ), 'q3' ))
76+ (self .tr ('First Quartile ' ), 'q1' ),
77+ (self .tr ('Third Quartile ' ), 'q3' ))
7878
7979 self .TYPES = [self .tr ('Use Input Layer Data Type' ), 'Byte' , 'Int16' , 'UInt16' , 'UInt32' , 'Int32' , 'Float32' , 'Float64' , 'CInt16' , 'CInt32' , 'CFloat32' , 'CFloat64' ]
8080
0 commit comments