diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-26 12:54:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-04-24 19:38:57 +0200 |
commit | d3d5a308baccad3bd552e5679e95ac31f2ab98e1 (patch) | |
tree | c31af09ef7a5396723ab6975e7007be3cd5ed5a2 /ishtar_common | |
parent | bccac276d46ee4fc109efb5a37eba9cbcfda2f08 (diff) | |
download | Ishtar-d3d5a308baccad3bd552e5679e95ac31f2ab98e1.tar.bz2 Ishtar-d3d5a308baccad3bd552e5679e95ac31f2ab98e1.zip |
Geo template: add missing translations
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/templates/ishtar/blocks/sheet_coordinates.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/sheet_coordinates.html b/ishtar_common/templates/ishtar/blocks/sheet_coordinates.html index d73ef9c96..1c5282c91 100644 --- a/ishtar_common/templates/ishtar/blocks/sheet_coordinates.html +++ b/ishtar_common/templates/ishtar/blocks/sheet_coordinates.html @@ -15,8 +15,10 @@ </dd> </dl> {% if geo_item.point_source == 'P' or not geo_item.multi_polygon %} -{% field_flex_full "Point source" geo_item.geo_point_source %} +{% trans "Point source" as point_source %} +{% field_flex_full point_source geo_item.geo_point_source %} {% else %} -{% field_flex_full "Polygon source" geo_item.geo_polygon_source %} +{% trans "Polygon source" as polygon_source %} +{% field_flex_full polygon_source geo_item.geo_polygon_source %} {% endif %} {% endif %} |