Skip to content

Commit 2013984

Browse files
committedOct 20, 2016
fix translation strings
1 parent fba53db commit 2013984

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed
 

‎python/plugins/processing/algs/qgis/ReliefAuto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def defineCharacteristics(self):
6060
self.addParameter(ParameterNumber(self.Z_FACTOR,
6161
self.tr('Z factor'), 1.0, 999999.99, 1.0))
6262
self.addOutput(OutputRaster(self.OUTPUT_LAYER,
63-
self.tr('Refilef')))
63+
self.tr('Relief')))
6464
self.addOutput(OutputTable(self.FREQUENCY_DISTRIBUTION,
65-
self.tr('Frequesncy distribution')))
65+
self.tr('Frequency distribution')))
6666

6767
def processAlgorithm(self, progress):
6868
inputFile = self.getParameterValue(self.INPUT_LAYER)

‎resources/function_help/json/array_insert

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "function",
44
"description": "Returns an array with the given value added at the given position.",
55
"arguments": [ {"arg":"array","description":"an array"},
6-
{"arg":"pos","description":"the position where to add (0 based"},
6+
{"arg":"pos","description":"the position where to add (0 based)"},
77
{"arg":"value","description":"the value to add"}],
88
"examples": [ { "expression":"array_insert(array(1,2,3),1,100)", "returns":"array: 1,100,2,3"}]
99
}

‎resources/function_help/json/array_remove_at

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"type": "function",
44
"description": "Returns an array with the given index removed.",
55
"arguments": [ {"arg":"array","description":"an array"},
6-
{"arg":"pos","description":"the position to remove (0 based"}],
6+
{"arg":"pos","description":"the position to remove (0 based)"}],
77
"examples": [ { "expression":"array_remove_at(array(1,2,3),1)", "returns":"array: 1,3"}]
88
}

‎resources/function_help/json/map_concat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "map_concat",
33
"type": "function",
4-
"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.",
4+
"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.",
55
"variableLenArguments": true,
66
"arguments": [
77
{"arg":"map1", "syntaxOnly": true},

‎src/plugins/grass/modules/r.unpack.qgm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
33

4-
<qgisgrassmodule label="Imports a raster map as GRASS GIS specific archive file (packed with r.pack) a." module="r.unpack">
4+
<qgisgrassmodule label="Imports a raster map as GRASS GIS specific archive file (packed with r.pack)." module="r.unpack">
55
<file key="input" type="old"/>
66
<option key="output"/>
77
<flag key="o" answer="off" advanced="yes"/>

‎src/plugins/grass/modules/v.class.mlpy.qgis.qgm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
33

4-
<qgisgrassmodule label="Vector supervised classification tool which uses attributes as classification parametres" module="v.class.mlpy.qgis.py">
4+
<qgisgrassmodule label="Vector supervised classification tool which uses attributes as classification parameters" module="v.class.mlpy.qgis.py">
55
<option key="input"/>
66
<option key="training"/>
77
<option key="class_column"/>

‎src/plugins/grass/modules/v.unpack.qgm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
33

4-
<qgisgrassmodule label="Imports a vector map as GRASS GIS specific archive file (packed with v.pack) a." module="v.unpack">
4+
<qgisgrassmodule label="Imports a vector map as GRASS GIS specific archive file (packed with v.pack)." module="v.unpack">
55
<file key="input" type="old"/>
66
<option key="output"/>
77
<flag key="o" answer="off" advanced="yes"/>

‎src/plugins/grass/scripts/v.class.mlpy.qgis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
############################################################################
2121

2222
#%module
23-
#% 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.
23+
#% 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.
2424
#% keyword: vector
2525
#% keyword: classification
2626
#% keyword: supervised

0 commit comments

Comments
 (0)
Please sign in to comment.