Skip to content

Commit a3fdb95

Browse files
committedJul 8, 2017
Update model input type names
1 parent 7db1a9d commit a3fdb95

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎python/plugins/processing/modeler/ModelerParameterDefinitionDialog.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@
6464
class ModelerParameterDefinitionDialog(QDialog):
6565

6666
PARAMETER_NUMBER = 'Number'
67-
PARAMETER_RASTER = 'Raster layer'
68-
PARAMETER_TABLE = 'Table'
69-
PARAMETER_VECTOR = 'Vector layer'
67+
PARAMETER_RASTER = 'Raster Layer'
68+
PARAMETER_TABLE = 'Vector Layer'
69+
PARAMETER_VECTOR = 'Feature Source'
7070
PARAMETER_STRING = 'String'
7171
PARAMETER_EXPRESSION = 'Expression'
7272
PARAMETER_BOOLEAN = 'Boolean'
73-
PARAMETER_TABLE_FIELD = 'Table field'
73+
PARAMETER_TABLE_FIELD = 'Layer Field'
7474
PARAMETER_EXTENT = 'Extent'
7575
PARAMETER_FILE = 'File'
7676
PARAMETER_POINT = 'Point'
7777
PARAMETER_CRS = 'CRS'
78-
PARAMETER_MULTIPLE = 'Multiple input'
78+
PARAMETER_MULTIPLE = 'Multiple Input'
7979

8080
paramTypes = [
8181
PARAMETER_BOOLEAN,

0 commit comments

Comments
 (0)
Please sign in to comment.