From 5bb3e32a5cf76401be2fe4c14195a1baa4c3045b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 29 Feb 2024 16:15:44 +0100 Subject: [PATCH] Fix section title --- Controller/DefaultController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Controller/DefaultController.php b/Controller/DefaultController.php index 4c81688..9554557 100644 --- a/Controller/DefaultController.php +++ b/Controller/DefaultController.php @@ -395,7 +395,7 @@ class DefaultController extends AbstractController { $this->context['title']['page'] = $this->translator->trans('Libre Air user list'); //Set section - $this->context['title']['section'] = $this->translator->trans('Users'); + $this->context['title']['section'] = $this->translator->trans('User'); //Set description $this->context['description'] = $this->translator->trans('Lists Libre air users'); @@ -405,7 +405,7 @@ class DefaultController extends AbstractController { $this->context['title']['page'] = $this->translator->trans('Libre Air organizer list'); //Set section - $this->context['title']['section'] = $this->translator->trans('Organizers'); + $this->context['title']['section'] = $this->translator->trans('Organizer'); //Set description $this->context['description'] = $this->translator->trans('Lists Libre air organizers'); @@ -599,7 +599,7 @@ class DefaultController extends AbstractController { $this->context['title']['page'] = $this->translator->trans('%pseudonym% organizer', ['%pseudonym%' => $this->context['user']['pseudonym']]); //Set section - $this->context['title']['section'] = $this->translator->trans('Users'); + $this->context['title']['section'] = $this->translator->trans('User'); //With locations if (!empty($locations)) { -- 2.41.0