From: Mathieu Lutfy Date: Mon, 9 May 2016 21:37:29 +0000 (-0400) Subject: CRM-18518: More ts() fixes. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c6021c27f1ac61f759e5e98b9e169a4e00bd1163;p=civicrm-core.git CRM-18518: More ts() fixes. --- diff --git a/CRM/Contribute/BAO/ContributionRecur.php b/CRM/Contribute/BAO/ContributionRecur.php index da44e17b04..7e3aa2ae2b 100644 --- a/CRM/Contribute/BAO/ContributionRecur.php +++ b/CRM/Contribute/BAO/ContributionRecur.php @@ -782,8 +782,8 @@ INNER JOIN civicrm_contribution con ON ( con.id = mp.contribution_id ) // Add field to check if payment is made for recurring contribution $recurringPaymentOptions = array( - 1 => ts(' All recurring contributions'), - 2 => ts(' Recurring contributions with at least one payment'), + 1 => ts('All recurring contributions'), + 2 => ts('Recurring contributions with at least one payment'), ); $form->addRadio('contribution_recur_payment_made', NULL, $recurringPaymentOptions, array('allowClear' => TRUE)); CRM_Core_Form_Date::buildDateRange($form, 'contribution_recur_start_date', 1, '_low', '_high', ts('From'), FALSE, FALSE, 'birth');