From daf61a4a6155d03f4f0656c404f4711b6be96920 Mon Sep 17 00:00:00 2001 From: Yannick FAVRE Date: Mon, 14 Feb 2022 17:26:08 +0100 Subject: [PATCH] FIX bug notification + changement texte --- .gitignore | 1 + VERSION | 2 +- .../SendComponentUpdateEmailNotificationHandler.php | 10 +++++++--- resources/lang/fr-FR/cachet.php | 2 +- resources/lang/fr-FR/notifications.php | 4 ++-- resources/views/vendor/notifications/email.blade.php | 6 +++--- 6 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 96cbe1660fda..99cf7c591e1e 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ Homestead.yaml npm-debug.log .env package-lock.json +.vscode/launch.json diff --git a/VERSION b/VERSION index baed923100ff..c07b4515df7e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v2.5.1-1 +v2.5.1-2 diff --git a/app/Bus/Handlers/Events/Component/SendComponentUpdateEmailNotificationHandler.php b/app/Bus/Handlers/Events/Component/SendComponentUpdateEmailNotificationHandler.php index 9a27fe8fb535..0568b49f3d86 100644 --- a/app/Bus/Handlers/Events/Component/SendComponentUpdateEmailNotificationHandler.php +++ b/app/Bus/Handlers/Events/Component/SendComponentUpdateEmailNotificationHandler.php @@ -68,9 +68,13 @@ public function handle(ComponentStatusWasChangedEvent $event) } // YF - Don't notify if checkbox not checked - if ($_POST["component_notify"] == "false" || $_POST["component_notify"] == ""){ - return; - } + if (array_key_exists('component_notify', $_POST)) { + if ($_POST["component_notify"] == "false" || $_POST["component_notify"] == ""){ + return; + } + } else return; + + // First notify all global subscribers. $globalSubscribers = $this->subscriber->isVerified()->isGlobal()->get(); diff --git a/resources/lang/fr-FR/cachet.php b/resources/lang/fr-FR/cachet.php index 478159244baf..a7be4933df38 100644 --- a/resources/lang/fr-FR/cachet.php +++ b/resources/lang/fr-FR/cachet.php @@ -30,7 +30,7 @@ // Incidents 'incidents' => [ 'none' => 'Aucun incident signalé', - 'past' => 'Incidents antérieurs', + 'past' => 'Incidents', 'stickied' => 'Incidents épinglés', 'scheduled' => 'Maintenance Planifiée', 'scheduled_at' => ', planifé à :timestamp', diff --git a/resources/lang/fr-FR/notifications.php b/resources/lang/fr-FR/notifications.php index 9f1071b60fa7..9b5b7e86dd17 100644 --- a/resources/lang/fr-FR/notifications.php +++ b/resources/lang/fr-FR/notifications.php @@ -80,8 +80,8 @@ 'verify' => [ 'mail' => [ 'subject' => 'Vérifier votre abonnement', - 'content' => 'Cliquer pour vérifier votre abonnement à :app_name status page.', - 'title' => 'Vérifier votre abonnement à :app_name status page.', + 'content' => 'Merci de cliquer sur « Vérifier » ci-dessus afin de confirmer votre adresse email et votre abonnement.', + 'title' => 'Bonjour, vous êtes abonnés à la page de suivi des incidents de production sur les Solutions AVMP’UP (TEL4B, FAXBIS, SMSBIS, DEMAT’MANAGER, SVI, TRUNKSIP)', 'action' => 'Vérifier', ], ], diff --git a/resources/views/vendor/notifications/email.blade.php b/resources/views/vendor/notifications/email.blade.php index fd55d94881e8..e585e7a2548d 100644 --- a/resources/views/vendor/notifications/email.blade.php +++ b/resources/views/vendor/notifications/email.blade.php @@ -43,15 +43,15 @@ @if (! empty($salutation)) {{ $salutation }} @else -@lang('Regards'),
{{ setting('app_name', config('app.name')) }} +@lang('Cordialement'),
{{ setting('app_name', config('app.name')) }} @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') @lang( - "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n". - 'into your web browser: [:actionURL](:actionURL)', + "Si vous rencontrez des problèmes avec le bouton \":actionText\" , copier et coller l'url suivante\n". + 'dans votre navigateur: [:actionURL](:actionURL)', [ 'actionText' => $actionText, 'actionURL' => $actionUrl,