mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
fix translation strings
This commit is contained in:
parent
fba53db785
commit
2013984297
@ -60,9 +60,9 @@ class ReliefAuto(GeoAlgorithm):
|
||||
self.addParameter(ParameterNumber(self.Z_FACTOR,
|
||||
self.tr('Z factor'), 1.0, 999999.99, 1.0))
|
||||
self.addOutput(OutputRaster(self.OUTPUT_LAYER,
|
||||
self.tr('Refilef')))
|
||||
self.tr('Relief')))
|
||||
self.addOutput(OutputTable(self.FREQUENCY_DISTRIBUTION,
|
||||
self.tr('Frequesncy distribution')))
|
||||
self.tr('Frequency distribution')))
|
||||
|
||||
def processAlgorithm(self, progress):
|
||||
inputFile = self.getParameterValue(self.INPUT_LAYER)
|
||||
|
@ -3,7 +3,7 @@
|
||||
"type": "function",
|
||||
"description": "Returns an array with the given value added at the given position.",
|
||||
"arguments": [ {"arg":"array","description":"an array"},
|
||||
{"arg":"pos","description":"the position where to add (0 based"},
|
||||
{"arg":"pos","description":"the position where to add (0 based)"},
|
||||
{"arg":"value","description":"the value to add"}],
|
||||
"examples": [ { "expression":"array_insert(array(1,2,3),1,100)", "returns":"array: 1,100,2,3"}]
|
||||
}
|
||||
|
@ -3,6 +3,6 @@
|
||||
"type": "function",
|
||||
"description": "Returns an array with the given index removed.",
|
||||
"arguments": [ {"arg":"array","description":"an array"},
|
||||
{"arg":"pos","description":"the position to remove (0 based"}],
|
||||
{"arg":"pos","description":"the position to remove (0 based)"}],
|
||||
"examples": [ { "expression":"array_remove_at(array(1,2,3),1)", "returns":"array: 1,3"}]
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "map_concat",
|
||||
"type": "function",
|
||||
"description": "Returns a map containing all the entries of the given map. If two maps contain the same key, the value of the second map is taken.",
|
||||
"description": "Returns a map containing all the entries of the given maps. If two maps contain the same key, the value of the second map is taken.",
|
||||
"variableLenArguments": true,
|
||||
"arguments": [
|
||||
{"arg":"map1", "syntaxOnly": true},
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
|
||||
|
||||
<qgisgrassmodule label="Imports a raster map as GRASS GIS specific archive file (packed with r.pack) a." module="r.unpack">
|
||||
<qgisgrassmodule label="Imports a raster map as GRASS GIS specific archive file (packed with r.pack)." module="r.unpack">
|
||||
<file key="input" type="old"/>
|
||||
<option key="output"/>
|
||||
<flag key="o" answer="off" advanced="yes"/>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
|
||||
|
||||
<qgisgrassmodule label="Vector supervised classification tool which uses attributes as classification parametres" module="v.class.mlpy.qgis.py">
|
||||
<qgisgrassmodule label="Vector supervised classification tool which uses attributes as classification parameters" module="v.class.mlpy.qgis.py">
|
||||
<option key="input"/>
|
||||
<option key="training"/>
|
||||
<option key="class_column"/>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
|
||||
|
||||
<qgisgrassmodule label="Imports a vector map as GRASS GIS specific archive file (packed with v.pack) a." module="v.unpack">
|
||||
<qgisgrassmodule label="Imports a vector map as GRASS GIS specific archive file (packed with v.pack)." module="v.unpack">
|
||||
<file key="input" type="old"/>
|
||||
<option key="output"/>
|
||||
<flag key="o" answer="off" advanced="yes"/>
|
||||
|
@ -20,7 +20,7 @@
|
||||
############################################################################
|
||||
|
||||
#%module
|
||||
#% description: Vector supervised classification tool which uses attributes as classification parametres (order of columns matters, names not), cat column identifies feature, class_column is excluded from classification parametres.
|
||||
#% description: Vector supervised classification tool which uses attributes as classification parameters (order of columns matters, names not), cat column identifies feature, class_column is excluded from classification parameters.
|
||||
#% keyword: vector
|
||||
#% keyword: classification
|
||||
#% keyword: supervised
|
||||
|
Loading…
x
Reference in New Issue
Block a user