fix translation strings

This commit is contained in:
Juergen E. Fischer 2016-10-20 18:16:37 +02:00
parent fba53db785
commit 2013984297
8 changed files with 9 additions and 9 deletions

View File

@ -60,9 +60,9 @@ class ReliefAuto(GeoAlgorithm):
self.addParameter(ParameterNumber(self.Z_FACTOR, self.addParameter(ParameterNumber(self.Z_FACTOR,
self.tr('Z factor'), 1.0, 999999.99, 1.0)) self.tr('Z factor'), 1.0, 999999.99, 1.0))
self.addOutput(OutputRaster(self.OUTPUT_LAYER, self.addOutput(OutputRaster(self.OUTPUT_LAYER,
self.tr('Refilef'))) self.tr('Relief')))
self.addOutput(OutputTable(self.FREQUENCY_DISTRIBUTION, self.addOutput(OutputTable(self.FREQUENCY_DISTRIBUTION,
self.tr('Frequesncy distribution'))) self.tr('Frequency distribution')))
def processAlgorithm(self, progress): def processAlgorithm(self, progress):
inputFile = self.getParameterValue(self.INPUT_LAYER) inputFile = self.getParameterValue(self.INPUT_LAYER)

View File

@ -3,7 +3,7 @@
"type": "function", "type": "function",
"description": "Returns an array with the given value added at the given position.", "description": "Returns an array with the given value added at the given position.",
"arguments": [ {"arg":"array","description":"an array"}, "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"}], {"arg":"value","description":"the value to add"}],
"examples": [ { "expression":"array_insert(array(1,2,3),1,100)", "returns":"array: 1,100,2,3"}] "examples": [ { "expression":"array_insert(array(1,2,3),1,100)", "returns":"array: 1,100,2,3"}]
} }

View File

@ -3,6 +3,6 @@
"type": "function", "type": "function",
"description": "Returns an array with the given index removed.", "description": "Returns an array with the given index removed.",
"arguments": [ {"arg":"array","description":"an array"}, "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"}] "examples": [ { "expression":"array_remove_at(array(1,2,3),1)", "returns":"array: 1,3"}]
} }

View File

@ -1,7 +1,7 @@
{ {
"name": "map_concat", "name": "map_concat",
"type": "function", "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, "variableLenArguments": true,
"arguments": [ "arguments": [
{"arg":"map1", "syntaxOnly": true}, {"arg":"map1", "syntaxOnly": true},

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> <!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"/> <file key="input" type="old"/>
<option key="output"/> <option key="output"/>
<flag key="o" answer="off" advanced="yes"/> <flag key="o" answer="off" advanced="yes"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> <!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="input"/>
<option key="training"/> <option key="training"/>
<option key="class_column"/> <option key="class_column"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> <!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"/> <file key="input" type="old"/>
<option key="output"/> <option key="output"/>
<flag key="o" answer="off" advanced="yes"/> <flag key="o" answer="off" advanced="yes"/>

View File

@ -20,7 +20,7 @@
############################################################################ ############################################################################
#%module #%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: vector
#% keyword: classification #% keyword: classification
#% keyword: supervised #% keyword: supervised