I am using translation.en.yml in twig.
What I want to do is very simple ,please check the code below.
in my twig
{{ "message.thxContactUs" | trans({'%username%' : "myName"})}}
in my translation.en.yml
message:
thxContactUs: Dear {{username}} thank you for contacting us
however this out put is
Dear {{username}} thank you for contacting us
however it doesn't work, please could anyone correct this code??