【发布时间】:2012-03-14 19:31:24
【问题描述】:
我需要翻译部分文本(在树枝中)。
类似的东西:
// page.html.twig
...
{{ text | trans ({}, 'MyprojectMyBundle')}}
假设变量 'text' 有字符串:“Value is between 5 and 10”
在翻译中我有:
// Project/MyBundle/Resources/Translations/MyprojectMyBundle.pt_BR.yml
...
Value is between and : "Valor está entre e"
如何在翻译中转义数字(5 和 10)? 我需要:
值在 5 到 10 之间 -> Valor está entre 5 e 10
值在 50 到 60 之间 -> Valor está entre 50 e 60
等等……
【问题讨论】:
标签: symfony translation twig