{% load i18n %}
{% if state == 'submitted' %}
{% translate "submitted" %}
{% elif state == 'rejected' %}
{% translate "not accepted" %}
{% elif state == 'accepted' %}
{% translate "accepted" %}
{% elif state == 'confirmed' %}
{% translate "confirmed" %}
{% elif state == 'canceled' %}
{% translate "canceled" %}
{% elif state == 'withdrawn' %}
{% translate "withdrawn" %}
{% elif state == 'deleted' %}
{% translate "deleted" %}
{% endif %}