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 2ff6f72 commit 3ecf6e6Copy full SHA for 3ecf6e6
python/plugins/processing/algs/qgis/Datasources2Vrt.py
@@ -60,7 +60,7 @@ def defineCharacteristics(self):
60
"""
61
62
# The name that the user will see in the toolbox
63
- self.name = 'Merge datasources in VRT'
+ self.name = 'Build virtual vector'
64
65
# The branch of the toolbox under which the algorithm will appear
66
self.group = 'Vector general tools'
@@ -78,9 +78,9 @@ def defineCharacteristics(self):
78
79
# We add outputs
80
self.addOutput(OutputFile(self.OUTPUT_VRT_FILE,
81
- self.tr('Output vrt filename')))
+ self.tr('Virtual vector')))
82
self.addOutput(OutputString(self.OUTPUT_VRT_STRING,
83
- self.tr('Output vrt string')))
+ self.tr('Virtual string')))
84
85
86
def processAlgorithm(self, progress):
0 commit comments