Skip to content

Commit

Permalink
changed to descriptive name
Browse files Browse the repository at this point in the history
  • Loading branch information
anitagraser authored and m-kuhn committed Oct 20, 2015
1 parent f705154 commit b20d316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/EquivalentNumField.py
Expand Up @@ -72,10 +72,10 @@ def processAlgorithm(self, progress):
del writer

def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Create equivalent numerical field')
self.name, self.i18n_name = self.trAlgorithm('Add unique value index field')
self.group, self.i18n_group = self.trAlgorithm('Vector table tools')
self.addParameter(ParameterVector(self.INPUT,
self.tr('Input layer'), [ParameterVector.VECTOR_TYPE_ANY]))
self.addParameter(ParameterTableField(self.FIELD,
self.tr('Class field'), self.INPUT))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Numeric field')))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Layer with index field')))

0 comments on commit b20d316

Please sign in to comment.