From d3d5a308baccad3bd552e5679e95ac31f2ab98e1 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 26 Feb 2019 12:54:56 +0100 Subject: Geo template: add missing translations --- ishtar_common/templates/ishtar/blocks/sheet_coordinates.html | 6 ++++-- 1 file 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 @@ {% 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 %} -- cgit v1.2.3