From 3d1ec7c22e7458a819f16ac674945bcf397c34cd Mon Sep 17 00:00:00 2001 From: alext Date: Sun, 3 Jun 2018 15:05:18 +0200 Subject: [PATCH] Replaced hardcoded string with translated value on appointment removal email notification (#491). --- src/engine/Notifications/Email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/Notifications/Email.php b/src/engine/Notifications/Email.php index be5263e9..edb1ea3e 100755 --- a/src/engine/Notifications/Email.php +++ b/src/engine/Notifications/Email.php @@ -242,7 +242,7 @@ class Email { '$appointment_service' => $service['name'], '$appointment_provider' => $provider['first_name'] . ' ' . $provider['last_name'], '$appointment_date' => date($date_format . ' ' . $timeFormat, strtotime($appointment['start_datetime'])), - '$appointment_duration' => $service['duration'] . ' minutes', + '$appointment_duration' => $service['duration'] . ' ' . $this->framework->lang->line('minutes'), '$company_link' => $company['company_link'], '$company_name' => $company['company_name'], '$customer_name' => $customer['first_name'] . ' ' . $customer['last_name'],