more fixes
authoryashodha <yashodha@cividesk.com>
Mon, 23 Apr 2018 05:59:52 +0000 (11:29 +0530)
committeryashodha <yashodha@cividesk.com>
Mon, 23 Apr 2018 05:59:52 +0000 (11:29 +0530)
CRM/Report/Form/Event/IncomeCountSummary.php
CRM/Report/Form/Mailing/Bounce.php
CRM/Report/Form/Mailing/Clicks.php
CRM/Report/Form/Mailing/Detail.php

index 4fc83931b1f44185f794983cd6df036bb7ef1210..0623207e8518ff5a11c6fae31ac756d8a1235e38 100644 (file)
@@ -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.
index f11991859cf7b502f723f24ae63488dd189b8158..1588b1796a9c0b7552d4e1a68b811fbdc9ec3b96 100644 (file)
@@ -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('<del>Email address deleted</del>');
+          $rows[$rowNum]['civicrm_email_email'] = '<del>' . ts('Email address deleted.') . '</del>';
         }
         $entryFound = TRUE;
       }
index be060bd0e0a81c0208dc9270fc2e62a70af8408d..84cb8f1cf2b711f401c8238873597984cfedef24 100644 (file)
@@ -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('<del>Email address deleted</del>');
+          $rows[$rowNum]['civicrm_email_email'] = '<del>' . ts('Email address deleted.') . '</del>';
         }
         $entryFound = TRUE;
       }
index a79c6b7dda82330717bed0efba8f089d1a0018e7..1e1ffaa129c90b027b9981d636850e14c5c4eb18 100644 (file)
@@ -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('<del>Email address deleted</del>');
+          $rows[$rowNum]['civicrm_email_email'] = '<del>' . ts('Email address deleted.') . '</del>';
         }
         $entryFound = TRUE;
       }