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 | 2ae98e371d538c15362d520a93ab148c92f6ddcd (patch) | |
tree | c31af09ef7a5396723ab6975e7007be3cd5ed5a2 | |
parent | ca0ffc80337fc00bf355c40a15b2a1b34774c05d (diff) | |
download | Ishtar-2ae98e371d538c15362d520a93ab148c92f6ddcd.tar.bz2 Ishtar-2ae98e371d538c15362d520a93ab148c92f6ddcd.zip |
Geo template: add missing translations
-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 %} |