Skip to content

Commit

Permalink
fix expression translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 9, 2022
1 parent c5ca66d commit 15a7766
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion resources/function_help/json/base_file_name
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns the base name of the file without the directory or file suffix.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "base_file_name('/home/qgis/data/country_boundaries.shp')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/exif
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Retrieves exif tag values from an image file.",
"arguments": [{
"arg": "path",
"description": "An image file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "An image file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}, {
"arg": "tag",
"optional": true,
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/exif_geotag
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Creates a point geometry from the exif geotags of an image file.",
"arguments": [{
"arg": "path",
"description": "An image file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "An image file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "geom_to_wkt(exif_geotag('/my/photo.jpg'))",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/file_exists
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns true if a file path exists.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "file_exists('/home/qgis/data/country_boundaries.shp')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/file_name
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns the name of a file (including the file extension), excluding the directory.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "file_name('/home/qgis/data/country_boundaries.shp')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/file_path
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns the directory component of a file path. This does not include the file name.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "file_path('/home/qgis/data/country_boundaries.shp')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/file_size
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns the size (in bytes) of a file.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "file_size('/home/qgis/data/country_boundaries.geojson')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/file_suffix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns the file suffix (extension) from a file path.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "file_suffix('/home/qgis/data/country_boundaries.shp')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/is_directory
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns true if a path corresponds to a directory.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "is_directory('/home/qgis/data/country_boundaries.shp')",
Expand Down
2 changes: 1 addition & 1 deletion resources/function_help/json/is_file
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Returns true if a path corresponds to a file.",
"arguments": [{
"arg": "path",
"description": "a file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
"description": "a file path or a map layer value. If a map layer value is specified then the file source of the layer will be used."
}],
"examples": [{
"expression": "is_file('/home/qgis/data/country_boundaries.shp')",
Expand Down

0 comments on commit 15a7766

Please sign in to comment.