{% trans_default_domain "admin" %}
{% if pageActions is defined %}
{% for action in pageActions %}
{# if the given action is an instance of a page action then render it as such #}
{% if action is instanceof('Bazookas\\AdminBundle\\Util\\PageAction') %}
{{ action.label|trans }}
{% else %}
{# if it isn't then render it the old way #}
{{ action.label|trans }}
{% endif %}
{% endfor %}