From: Raphaƫl Gertz <git@rapsys.eu>
Date: Thu, 29 Feb 2024 15:15:44 +0000 (+0100)
Subject: Fix section title
X-Git-Tag: 0.3.0~10
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/5bb3e32a5cf76401be2fe4c14195a1baa4c3045b

Fix section title
---

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)) {