Skip to content

Commit

Permalink
Merge pull request #11701 from samuelsov/tsfix
Browse files Browse the repository at this point in the history
(NFC) remove starting whitespace in ts about installments
  • Loading branch information
colemanw authored Feb 21, 2018
2 parents 5ad79e0 + 8567f42 commit 0376424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CRM/Core/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0376424

Please sign in to comment.