I am needing translate parts of a text (in twig).
Something like that:
// page.html.twig
...
{{ text | trans ({}, 'MyprojectMyBundle')}}
Supos variable 'text' have the string: "Value is between 5 and 10"
In translation arquive I have:
// Project/MyBundle/Resources/Translations/MyprojectMyBundle.pt_BR.yml
...
Value is between and : "Valor está entre e"
How can I escape the numbers (5 and 10) in translation? I need:
Value is between 5 and 10 -> Valor está entre 5 e 10
Value is between 50 and 60 -> Valor está entre 50 e 60
etc...