From 0465b89bd45d3a6109709655a48b42ae08b6937c Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 21 Aug 2019 16:33:04 +0200 Subject: [PATCH] Allow to change language --- public/img/flags/en.svg | 15 +++++++++++++++ public/img/flags/fr.svg | 7 +++++++ src/Controller/FediPlanController.php | 5 +++-- templates/fediplan/schedule.html.twig | 2 +- templates/nav.html.twig | 10 ++++++++++ translations/fediplan.en.yaml | 1 + 6 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 public/img/flags/en.svg create mode 100644 public/img/flags/fr.svg diff --git a/public/img/flags/en.svg b/public/img/flags/en.svg new file mode 100644 index 0000000..d98b6cc --- /dev/null +++ b/public/img/flags/en.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/img/flags/fr.svg b/public/img/flags/fr.svg new file mode 100644 index 0000000..712c8a5 --- /dev/null +++ b/public/img/flags/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/Controller/FediPlanController.php b/src/Controller/FediPlanController.php index d30e9d9..633fe88 100644 --- a/src/Controller/FediPlanController.php +++ b/src/Controller/FediPlanController.php @@ -28,7 +28,7 @@ use Symfony\Contracts\Translation\TranslatorInterface; use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; /** - * @Route("/{_locale}", defaults={"_locale":"en"}) + * @Route("/{_locale}", defaults={"_locale":"en"}, requirements={"_locale": "en|fr"}) */ class FediPlanController extends AbstractController { @@ -41,7 +41,8 @@ class FediPlanController extends AbstractController { if ($authorizationChecker->isGranted('IS_AUTHENTICATED_FULLY')){ - return $this->redirect($this->generateUrl('schedule')); + $local = $request->getSession()->get('_locale'); + return $this->redirect($this->generateUrl('schedule',['_locale' => $local])); } $client = new Client(); $flow->bind($client); diff --git a/templates/fediplan/schedule.html.twig b/templates/fediplan/schedule.html.twig index 1b10e76..384f8ff 100644 --- a/templates/fediplan/schedule.html.twig +++ b/templates/fediplan/schedule.html.twig @@ -169,7 +169,7 @@ - Add files... + {{ 'page.schedule.form.add_files'|trans }}