{% block byline %}
{% ifequal event.object.in_reply_to.type_id "audio" %}
{% blocktrans with event.actor.display_name as name and event.actor.get_absolute_url as author_url and entry.get_absolute_url as url and event.object.in_reply_to.type_id as type and event.object.in_reply_to.author.display_name as author and entry.published|date_microformat as published and entry.published|pithy_timesince:"on " as timestamp %}
{{ name }} commented on an {{ type }} post by {{ author }} {{ timestamp }}.
{% endblocktrans %}
{% else %}
{% blocktrans with event.actor.display_name as name and event.actor.get_absolute_url as author_url and entry.get_absolute_url as url and event.object.in_reply_to.type_id as type and event.object.in_reply_to.author.display_name as author and entry.published|date_microformat as published and entry.published|pithy_timesince:"on " as timestamp %}
{{ name }} commented on a {{ type }} by {{ author }} {{ timestamp }}.
{% endblocktrans %}
{% endifequal %}
{% endblock %}