----------------------------------------
* CRM-18972: List of strings that cannot be localized cause the absence of ts() function
https://issues.civicrm.org/jira/browse/CRM-18972
}
elseif (isset($this->_columnHeaders[$colName])) {
if ($subtotal) {
- $row[$colName] = ts('Subtotal');
+ $row[$colName] = 'Subtotal';
$subtotal = FALSE;
}
else {
!$row['civicrm_membership_membership_type_id']
) {
$this->fixSubTotalDisplay($rows[$rowNum], $this->_statFields, FALSE);
- $rows[$rowNum]['civicrm_membership_membership_type_id'] = '<b>SubTotal</b>';
+ $rows[$rowNum]['civicrm_membership_membership_type_id'] = '<b>' . ts('Subtotal') . '</b>';
$entryFound = TRUE;
}