How to handle Translation in twig file using variables?

爷,独闯天下 提交于 2019-12-04 07:57:51

问题


I have a twig file and a yml in which i define the variables for translation, For ex. :

YML File -
variable.for.translation: Disponible, para tí

Content of Twig File -

<h2>"Hola, Follow {{ variableName }} en Twitter</h2>  

I wanted to make a variable for

Hola, Follow {{ variableName }} en Twitter

in translation file (i.e my yml file).
Currently i am doing it like this :
In YML -

follow.us.twitter: Hola, Follow 

follow.us.twitter1: en Twitter 

In Twig -

<h2>{{ "follow.us.twitter"|trans([], "workend") }} {{ variableName }} {{ "follow.us.twitter1"|trans([], "workend") }}</h2> 

Its working fine, but the problem is that i now have 3 variables in a twig which are too much :

 1. follow.us.twitter
 2. follow.us.twitter1
 3. {{ variableName }}

I tried to do it with 1 variable like :

follow.us.in.twitter : Hola, Follow {{ variableName }} en Twitter 
and  
<h2>{{ "follow.us.in.twitter"|trans([], "workend") }}</h2>

but it didn't worked the problem is the variable i.e {{ variableName }} i am using.
Is there any way to do handle a predefined variable and define it in translation file??
Thanks for your time.


回答1:


You were going on right track, what you missed is just to pass someVariable as a parameter to trans() in your Twig file as:

<h2>{{ "follow.us.in.twitter"|trans({'%someVariable%': someVariable}, "workend") }}</h2>

Now your message in Yml file should be as:

follow.us.in.twitter: Hola, Follow %someVariable% en Twitter

This should work. For more details and clarity you can refer the following: Symfony Book

Good Luck.



来源:https://stackoverflow.com/questions/8726636/how-to-handle-translation-in-twig-file-using-variables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!