在树枝中翻译表格数据

I fill my table with data in this way

  <tbody>
     {% for post in posts %}

            <tr>

              <td>{{ post.title }}</td>

              <td>{{ post.status }}</td>                

          </tr>
   {% endfor %}
  </tbody>

I need translate values from status, but it does not work. post.status has only 2 values in database PO_DRAFT and PO_ACCEPT and I need it translate. Is it possible? I tried in this way but it is wrong

 <td>{% trans %}{{ post.status }}{% endtrans %}</td>

Twig's i18n documentation mentions a trans filter, so maybe this would work?

{{ post.status | trans }}