Skip to content

Commit

Permalink
foreign language/explicit language detection improved;fixes #903
Browse files Browse the repository at this point in the history
  • Loading branch information
kouralex committed Jun 8, 2020
1 parent d110308 commit 40c7604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/concept-shared.twig
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
{% for grouppath in concept.groupProperties %}
<li>
{% for group in grouppath %}
<a class="versal" href="{{ group.uri | link_url(group.vocab,request.lang,'page',request.contentLang) }}">{% if group.notation %}<span class="versal">{{ group.notation }}</span>{% endif %}{{ group.label(request.contentLang) }}</a>
<a class="versal" href="{{ group.uri | link_url(group.vocab,request.lang,'page',request.contentLang) }}">{% if group.notation %}<span class="versal">{{ group.notation }}</span>{% endif %}{{ group.label(request.contentLang) }}</a>{% if group.label.lang and (group.label.lang != request.contentLang or explicit_langcodes) %} <span class="versal">({{ group.label.lang }})</span>{% endif %}
{% if not loop.last %}<span class="versal"> &#62; </span>{% endif %}
{% endfor %}
</li>
Expand Down

0 comments on commit 40c7604

Please sign in to comment.