Commit d9c266b2 by Damien Moulard

add inclusive writing in screens

parent edd768ea
......@@ -271,7 +271,7 @@ class UserController extends AbstractController
if (is_null($adherent_code)) {
$this->addFlash(
'error',
$this->translator->trans('L\'utilisateur n\'a pas encore défini un code de validation de paiement sur son espace personnel, il ne peut pas payer en Monnaie Solidaire pour l\'instant.')
$this->translator->trans('L\'habitant·e n\'a pas encore défini un code de validation de paiement sur son espace personnel, il·elle ne peut pas payer en Monnaie Solidaire pour l\'instant.')
);
goto end;
......@@ -312,7 +312,7 @@ class UserController extends AbstractController
$this->addFlash(
'error',
$this->translator->trans('Solde de l\'habitant insuffisant')
$this->translator->trans('Solde de l\'habitant·e insuffisant')
);
return $this->redirectToRoute('index');
......
......@@ -45,7 +45,7 @@ class EncaissementFormType extends AbstractType
'attr' => ['autocomplete' => 'off']
])
->add('payment_code', HiddenType::class, [
'label' => 'Code de validation de l\'habitant.e : ',
'label' => 'Code de validation de l\'habitant·e : ',
'required' => false,
'attr' => ['autocomplete' => 'off']
])
......
......@@ -5,7 +5,7 @@
{% include '@kohinos/block/breadcrumb.html.twig' with {'label': 'Encaissement'} %}
{% if validation == true %}
<h2 class='text-center w-100 mt-4 mb-4'>{{ "Code de validation de l'habitant"|trans }}</h2>
<h2 class='text-center w-100 mt-4 mb-4'>{{ "Code de validation de l'habitant·e"|trans }}</h2>
<div id="payment-validation-subheader"></div>
{% else %}
<h2 class='text-center w-100 mt-4 mb-4'>{{ "Encaissement"|trans }}</h2>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment