From 81ca3560e0e6e9b7ec2c0bb0dae927cbd04a6157 Mon Sep 17 00:00:00 2001 From: yashodha Date: Mon, 23 Apr 2018 11:29:52 +0530 Subject: [PATCH] more fixes --- CRM/Report/Form/Event/IncomeCountSummary.php | 2 +- CRM/Report/Form/Mailing/Bounce.php | 2 +- CRM/Report/Form/Mailing/Clicks.php | 2 +- CRM/Report/Form/Mailing/Detail.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CRM/Report/Form/Event/IncomeCountSummary.php b/CRM/Report/Form/Event/IncomeCountSummary.php index 4fc83931b1..0623207e85 100644 --- a/CRM/Report/Form/Event/IncomeCountSummary.php +++ b/CRM/Report/Form/Event/IncomeCountSummary.php @@ -395,7 +395,7 @@ class CRM_Report_Form_Event_IncomeCountSummary extends CRM_Report_Form_Event { $graph[$val] = $graphRows['value'][$key]; } $chartInfo['values'] = $graph; - $chartInfo['tip'] = ts('Participants : %1', array(1 => '#val#')); + $chartInfo['tip'] = ts('Participants : %1', array(1 => '#val#')); $chartInfo['xLabelAngle'] = 20; // build the chart. diff --git a/CRM/Report/Form/Mailing/Bounce.php b/CRM/Report/Form/Mailing/Bounce.php index f11991859c..1588b1796a 100644 --- a/CRM/Report/Form/Mailing/Bounce.php +++ b/CRM/Report/Form/Mailing/Bounce.php @@ -470,7 +470,7 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { // If the email address has been deleted if (array_key_exists('civicrm_email_email', $row)) { if (empty($rows[$rowNum]['civicrm_email_email'])) { - $rows[$rowNum]['civicrm_email_email'] = ts('Email address deleted'); + $rows[$rowNum]['civicrm_email_email'] = '' . ts('Email address deleted.') . ''; } $entryFound = TRUE; } diff --git a/CRM/Report/Form/Mailing/Clicks.php b/CRM/Report/Form/Mailing/Clicks.php index be060bd0e0..84cb8f1cf2 100644 --- a/CRM/Report/Form/Mailing/Clicks.php +++ b/CRM/Report/Form/Mailing/Clicks.php @@ -369,7 +369,7 @@ class CRM_Report_Form_Mailing_Clicks extends CRM_Report_Form { // If the email address has been deleted if (array_key_exists('civicrm_email_email', $row)) { if (empty($rows[$rowNum]['civicrm_email_email'])) { - $rows[$rowNum]['civicrm_email_email'] = ts('Email address deleted'); + $rows[$rowNum]['civicrm_email_email'] = '' . ts('Email address deleted.') . ''; } $entryFound = TRUE; } diff --git a/CRM/Report/Form/Mailing/Detail.php b/CRM/Report/Form/Mailing/Detail.php index a79c6b7dda..1e1ffaa129 100644 --- a/CRM/Report/Form/Mailing/Detail.php +++ b/CRM/Report/Form/Mailing/Detail.php @@ -484,7 +484,7 @@ class CRM_Report_Form_Mailing_Detail extends CRM_Report_Form { // If the email address has been deleted if (array_key_exists('civicrm_email_email', $row)) { if (empty($rows[$rowNum]['civicrm_email_email'])) { - $rows[$rowNum]['civicrm_email_email'] = ts('Email address deleted'); + $rows[$rowNum]['civicrm_email_email'] = '' . ts('Email address deleted.') . ''; } $entryFound = TRUE; } -- 2.25.1