From 40df76f089a14126416490679089445c51964e65 Mon Sep 17 00:00:00 2001 From: j Date: Sat, 22 Sep 2018 11:49:56 +0200 Subject: [PATCH] use English as default language --- shared/utils/templates/utils/_text_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/utils/templates/utils/_text_list.html b/shared/utils/templates/utils/_text_list.html index 0d6a321..a384d7d 100644 --- a/shared/utils/templates/utils/_text_list.html +++ b/shared/utils/templates/utils/_text_list.html @@ -3,7 +3,7 @@ {# Usage: {% include "utils/_text_list.html" with items=page.get_authors no_links=True %} #} {% for item in items %} - {% if forloop.last and forloop.counter > 1 %}{% trans "und" %}{% endif %} + {% if forloop.last and forloop.counter > 1 %}{% trans "and" %}{% endif %} {% with item.get_absolute_url as url %} {% if url and not no_links %}{% endif %}{{ item.name }}{% if url and not no_links %}{% endif %}{% if not forloop.last %}{% if forloop.revcounter0 > 1 %},{% endif %}{% endif %} {% endwith %}