how in Symfony create multilanguage page? In Symfony 1 in Jobeet tutorial is this very good describet, but now on symfony.com i dont show somethings of translated page. In symfony 1.4 is echo __('text'); but now in Symfony 2 is TWIG.
|
feedback
|
|
There is a documentation section on this on the Symfony2 website. You can check it here: Translations Basically, you have access in the routing to a special attribute named
You can also specify a default
Then, in twig, you use the special transformer
The loacle to translate the message is taken from the session, so changing the locale in the session, (via the url or programmaticaly), will change the translation to another thing. This use the Hope this helps. Regards, | ||||
|
feedback
|