From 85b8e8c14e22277fac7686322578a5f7650938c1 Mon Sep 17 00:00:00 2001 From: rra Date: Tue, 6 Mar 2018 15:53:40 +0100 Subject: [PATCH] translations button more verbose --- themes/varia/templates/article.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/themes/varia/templates/article.html b/themes/varia/templates/article.html index e68022f0e3..4e378fc141 100644 --- a/themes/varia/templates/article.html +++ b/themes/varia/templates/article.html @@ -50,7 +50,13 @@ {% if article.translations %}
{% for translation in article.translations %} - {{ translation.lang }} + {% if translation.lang == 'nl' %} + Lees dit artikel in het Nederlands + {% endif%} + + {% if translation.lang == 'en' %} + Read this article in English + {% endif%} {% endfor %}
{% endif %}