diff --git a/plinth/templates/internal-zone.html b/plinth/templates/internal-zone.html index ee6a809bd..61f59bb0a 100644 --- a/plinth/templates/internal-zone.html +++ b/plinth/templates/internal-zone.html @@ -7,17 +7,22 @@ {% block internal_zone_warning %} {% for component in firewall %} {% if not component.is_external %} -
{% with interfaces=component.get_internal_interfaces %} {% if not interfaces %} - {% trans "Currently there are no network interfaces configured as internal." %} + {% blocktrans trimmed %} + Currently there are no network interfaces configured as + internal. + {% endblocktrans %} {% else %} {% blocktrans trimmed with interface_list=interfaces|join:", " %} - Currently the following network interfaces are configured as internal: {{ interface_list }} + Currently the following network interfaces are configured as + internal: {{ interface_list }} {% endblocktrans %} {% endif %} {% endwith %}