在树枝上翻译tabledata

时间:2016-08-01 18:13:50

标签: php html5 symfony twig language-translation

我用这种方式填充表格

@ofert.user

我需要从状态转换值,但它不起作用。 post.status在数据库 PO_DRAFT PO_ACCEPT 中只有2个值,我需要翻译。可能吗? 我试过这种方式,但这是错误的

  <tbody>
     {% for post in posts %}

            <tr>

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

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

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

1 个答案:

答案 0 :(得分:1)

Twig的i18n documentation提到trans过滤器,所以也许这会有效?

{{ post.status | trans }}