From 8567f42034126b86ca5f0a2d9ffda8bbd0b6303f Mon Sep 17 00:00:00 2001 From: Samuel Vanhove Date: Wed, 21 Feb 2018 10:11:30 -0500 Subject: [PATCH] (NFC) remove starting whitespace in ts --- CRM/Core/Payment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Core/Payment.php b/CRM/Core/Payment.php index faf05f510a04..9f5eae392f88 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -489,10 +489,10 @@ public function getText($context, $params) { if (array_keys($params) == array('is_recur_installments', 'is_email_receipt')) { $gotText = ts('Your recurring contribution will be processed automatically.'); if ($params['is_recur_installments']) { - $gotText .= ts(' You can specify the number of installments, or you can leave the number of installments blank if you want to make an open-ended commitment. In either case, you can choose to cancel at any time.'); + $gotText .= ' ' . ts('You can specify the number of installments, or you can leave the number of installments blank if you want to make an open-ended commitment. In either case, you can choose to cancel at any time.'); } if ($params['is_email_receipt']) { - $gotText .= ts(' You will receive an email receipt for each recurring contribution.'); + $gotText .= ' ' . ts('You will receive an email receipt for each recurring contribution.'); } } break;