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.

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

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 _locale that is put in your url and will be used to set the locale in the session. Note that using this scheme, the locale value is automatically set into the Session by Symfony2

http://www.host.com/en/contact // English version
http://www.host.com/fr/contact // French version

You can also specify a default _locale value in your routes so it is not mandatory to provide the locale in the url.

http://www.host.com/contact    // English version if default _locale is 'en'

Then, in twig, you use the special transformer trans and transchoice to translate messages. Your messages can be a key or an natural language message that is used as the key, usually in english.

{{ 'user.prompt.welcome' | trans }} {# Key message #}
{{ 'Welcome to our site' | trans }} {# Natural language message #}

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 translator service under the hood.

Hope this helps.

Regards,
Matt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.