[processing][gdaltools] reword merge option (fix #8519)

This commit is contained in:
Alexander Bruy 2016-05-24 19:47:48 +03:00
parent 8ad1e3c8bc
commit c69665be92
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@
<item>
<widget class="QCheckBox" name="separateCheck">
<property name="text">
<string>Layer stack</string>
<string>Place each input file into a separate band</string>
</property>
</widget>
</item>

View File

@ -61,7 +61,7 @@ class merge(GdalAlgorithm):
self.addParameter(ParameterBoolean(merge.PCT,
self.tr('Grab pseudocolor table from first layer'), False))
self.addParameter(ParameterBoolean(merge.SEPARATE,
self.tr('Layer stack'), False))
self.tr('Place each input file into a separate band'), False))
self.addParameter(ParameterSelection(self.RTYPE,
self.tr('Output raster type'), self.TYPE, 5))