Replaced hardcoded string with translated value on appointment removal email notification (#491).

This commit is contained in:
alext 2018-06-03 15:05:18 +02:00
parent 4311a6205d
commit 3d1ec7c22e
1 changed files with 1 additions and 1 deletions

View File

@ -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'],