From 36850927aec94f6072efd7b012512520aae5b456 Mon Sep 17 00:00:00 2001 From: francescbassas <francesc@babu.cat> Date: Fri, 17 Sep 2021 19:20:35 +0200 Subject: [PATCH] Add space Formatting Close ts() function --- CRM/Member/Form/Membership.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CRM/Member/Form/Membership.php b/CRM/Member/Form/Membership.php index 7e9c28faeb..683f186395 100644 --- a/CRM/Member/Form/Membership.php +++ b/CRM/Member/Form/Membership.php @@ -134,11 +134,13 @@ class CRM_Member_Form_Membership extends CRM_Member_Form { */ public function setDeleteMessage() { $this->deleteMessage = '<span class="font-red bold">' - . ts('WARNING: Deleting this membership will also delete any related payment (contribution) records.' . ts('This action cannot be undone.') - . '</span><p>' - . ts('Consider modifying the membership status instead if you want to maintain an audit trail and avoid losing payment data. You can set the status to Cancelled by editing the membership and clicking the Status Override checkbox.') - . '</p><p>' - . ts("Click 'Delete' if you want to continue.") . '</p>'); + . ts('WARNING: Deleting this membership will also delete any related payment (contribution) records.') + . ' ' + . ts('This action cannot be undone.') + . '</span><p>' + . ts('Consider modifying the membership status instead if you want to maintain an audit trail and avoid losing payment data. You can set the status to Cancelled by editing the membership and clicking the Status Override checkbox.') + . '</p><p>' + . ts("Click 'Delete' if you want to continue.") . '</p>'; } /** -- 2.25.1