Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix translation strings
  • Loading branch information
jef-n committed Oct 20, 2016
1 parent fba53db commit 2013984
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/ReliefAuto.py
Expand Up @@ -60,9 +60,9 @@ def defineCharacteristics(self):
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)
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/array_insert
Expand Up @@ -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"}]
}
2 changes: 1 addition & 1 deletion resources/function_help/json/array_remove_at
Expand Up @@ -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"}]
}
2 changes: 1 addition & 1 deletion resources/function_help/json/map_concat
@@ -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},
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/modules/r.unpack.qgm
@@ -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"/>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/modules/v.class.mlpy.qgis.qgm
@@ -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"/>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/modules/v.unpack.qgm
@@ -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"/>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/scripts/v.class.mlpy.qgis.py
Expand Up @@ -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
Expand Down

0 comments on commit 2013984

Please sign in to comment.