How to Work with the User's Locale
Warning: You are browsing the documentation for Symfony 2.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
The locale of the current user is stored in the request and is accessible
via the Request
object:
1 2 3 4 5 6
use Symfony\Component\HttpFoundation\Request;
public function indexAction(Request $request)
{
$locale = $request->getLocale();
}
To set the user's locale, you may want to create a custom event listener so that it's set before any other parts of the system (i.e. the translator) need it:
1 2 3 4 5 6 7
public function onKernelRequest(GetResponseEvent $event)
{
$request = $event->getRequest();
// some logic to determine the $locale
$request->setLocale($locale);
}
Read Making the Locale "Sticky" during a User's Session for more information on making the user's locale "sticky" to their session.
Note
Setting the locale using $request->setLocale()
in the controller is
too late to affect the translator. Either set the locale via a listener
(like above), the URL (see next) or call setLocale()
directly on the
translator
service.
See the How to Work with the User's Locale section below about setting the locale via routing.
The Locale and the URL
Since you can store the locale of the user in the session, it may be tempting
to use the same URL to display a resource in different languages based on
the user's locale. For example, http://www.example.com/contact
could show
content in English for one user and French for another user. Unfortunately,
this violates a fundamental rule of the Web: that a particular URL returns
the same resource regardless of the user. To further muddy the problem, which
version of the content would be indexed by search engines?
A better policy is to include the locale in the URL. This is fully-supported
by the routing system using the special _locale
parameter:
1 2 3 4 5 6
# app/config/routing.yml
contact:
path: /{_locale}/contact
defaults: { _controller: AppBundle:Contact:index }
requirements:
_locale: en|fr|de
When using the special _locale
parameter in a route, the matched locale
is automatically set on the Request and can be retrieved via the
getLocale() method. In
other words, if a user visits the URI /fr/contact
, the locale fr
will
automatically be set as the locale for the current request.
You can now use the locale to create routes to other translated pages in your application.
Tip
Read How to Use Service Container Parameters in your Routes to learn how to avoid
hardcoding the _locale
requirement in all your routes.
Setting a Default Locale
What if the user's locale hasn't been determined? You can guarantee that a
locale is set on each user's request by defining a default_locale
for
the framework:
1 2 3
# app/config/config.yml
framework:
default_locale: en