{% trans 'Git revision:' %}
{% if is_remote_commit %}
{{ hash|slice(0, 7) }}
{% else %}
{{ hash|slice(0, 7) }}
{% endif %}
{% if branch is same as(false) %}
({% trans 'no branch' %})
{% elseif is_remote_branch %}
{{ 'from %s branch'|trans|format(
'%s'|format(
'https://github.com/phpmyadmin/phpmyadmin/tree/%s'|format(branch|e)|link,
branch|e
)
)|raw }},
{% else %}
{{ 'from %s branch'|trans|format(branch) }},
{% endif %}
{{ 'committed on %s by %s'|trans|format(
committer.date,
'%s'|format(committer.email|e, committer.name|e)
)|raw }}
{%- if committer is not same as(author) -%}
,
{{ 'authored on %s by %s'|trans|format(
author.date,
'%s'|format(author.email|e, author.name|e)
)|raw }}
{% endif %}