Contributed by Kevin Bond in #45793.
Working with the locale in Symfony applications is simple. The locale is stored in a request attribute called _locale and used in the rest of the application. Changing the locale (e.g. in multilingual applications via a list of languages selectable by users) requires changing that request attribute in an early event listener. However, sometimes you need to change the locale of the application dynamically just to run some code. Imagine an application that renders Twig templates of emails in different languages. You need to change the locale only to render those templates. In Symfony 6.1 we're improving situations like this thanks to a new locale switcher. The LocaleSwitcher object/service allows you to change at once the locale of all the services that are tagged with kernel.locale_aware.
use Symfony\Component\Translation\LocaleSwitcher;
class SomeClass { public function __construct( private LocaleSwitcher $localeSwitcher, ) {}
public function someMethod()
{
// you can get the current application locale like this:
$currentLocale = $this->localeSwitcher->getLocale();
// you can set the locale for the entire application like this:
// (from now on, the application will use 'fr' (French) as the
// locale; including the default locale used to translate Twig templates)
$this->localeSwitcher->setLocale('fr');
// you can also run some code with a certain locale, without
// changing the locale for the rest of the application
$this->localeSwitcher->runWithLocale('es', function() {
// e.g. render here some Twig templates using 'es' (Spanish) locale
});
// ...
}
}
Sponsor the Symfony project.
Login to add comment
Other posts in this group
![Nicolas Grekas returns to Montreal on February 25](https://www.cdn5.niftycent.com/a/D/v/v/l/l/v/nicolas-grekas-returns-to-montreal-on-february-25.webp)
Get ready, Montreal! The Full Stack Gurus meetup is back in 2025, and we can't wait to reconnect with the Symfony and PHP community. Mark your calendar for Tuesday, February 25th at 5:00 PM— t
![SymfonyDay Chicago 2025 - The full schedule is live!](https://www.cdn5.niftycent.com/a/1/9/K/M/y/0/symfonyday-chicago-2025-the-full-schedule-is-live.webp)
Mark your calendars for March 17, 2025 because SymfonyDay Chicago 2025 is shaping up to be an unmissable event! This full-day conference is dedicated to celebrating the amazing contributions o
![SymfonyLive Paris 2025 : Développer avec API Platform 4, ça change quoi ?](https://www.cdn5.niftycent.com/a/k/Q/r/2/0/Y/symfonylive-paris-2025-developper-avec-api-platform-4-ca-change-quoi.webp)
SymfonyLive Paris 2025, conference in French language only, will take place from March 27 to 28! The schedule is currently being revealed as we go along. More details are available here.
Al
![SymfonyLive Berlin 2025: Where have the women of tech history gone?](https://www.cdn5.niftycent.com/a/1/G/w/5/B/0/symfonylive-berlin-2025-where-have-the-women-of-tech-history-gone.webp)
SymfonyLive Berlin 2025, conference held in English, will take place from April 1 to 4! The schedule is being revealed gradually. More details are available here.
As we are now unveiling th
![A Week of Symfony #944 (27 January - 2 February 2025)](https://www.cdn5.niftycent.com/a/k/W/r/V/G/Z/a-week-of-symfony-944-27-january-2-february-2025.webp)
This week, Symfony released maintenance versions 6.4.18, 7.1.11 and 7.2.3. In addition, Twig published a security advisory and we shared several updates about upcoming Symfony conferences. Lastly, Sym
![Back on the inspiring SymfonyCon Vienna 2024!](https://www.cdn5.niftycent.com/a/k/X/r/L/V/p/back-on-the-inspiring-symfonycon-vienna-2024.webp)
We were absolutely thrilled to gather with the incredible Symfony community for the first time in Vienna, Austria, from December 5th to 6th, surrounded by the warm and festive atmosphere of the
![SymfonyLive Paris 2025 : Reveal of workshop topics!](https://www.cdn5.niftycent.com/a/1/Y/r/0/w/A/symfonylive-paris-2025-reveal-of-workshop-topics.webp)
SymfonyLive Paris 2025, conference in French language only, will take place from March 27 to 28! The schedule is currently being revealed as we go along. More details are available here.
💻