{# /** * @file * Default theme implementation for the Moderation Sidebar's translations. * * This is what appears when you click "Translate" in the sidebar. * * Available variables: * - current_language: The language of the currently viewed entity. * - translations: The translations of an entity, containing the language, state * and the translation links * - view_all: The 'View all translations' link. * * @ingroup themeable */ #}

{% trans %}{{ current_language }} (current){% endtrans %}

{% for translation in translations %}

{{ translation.language }}

{% if translation.state %}

{% trans %}Status: {{ translation.state }}{% endtrans %}

{% endif %}
{% endfor %} {% if view_all %}
{{ view_all }}
{% endif %}