From 474f6ca2ee5067283ca17045b8ba0b50d6c1b529 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sun, 16 Nov 2014 19:43:25 -0500 Subject: [PATCH] CRM-15603 - Remove concatenated parentheses from the end of strings --- CRM/Report/Form/Pledge/Detail.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Report/Form/Pledge/Detail.php b/CRM/Report/Form/Pledge/Detail.php index 60216bd389..ae4107a463 100644 --- a/CRM/Report/Form/Pledge/Detail.php +++ b/CRM/Report/Form/Pledge/Detail.php @@ -326,17 +326,17 @@ class CRM_Report_Form_Pledge_Detail extends CRM_Report_Form { $count = $dao->count; $totalCount .= $count; $statistics['counts']['amount' . $index] = array( - 'title' => ts('Total Amount Pledged (') . $dao->currency . ')', + 'title' => ts('Total Pledged') . ' (' . $dao->currency . ')', 'value' => $totalAmount, 'type' => CRM_Utils_Type::T_STRING, ); $statistics['counts']['avg' . $index] = array( - 'title' => ts('Average (') . $dao->currency . ')', + 'title' => ts('Average') . ' (' . $dao->currency . ')', 'value' => $average, 'type' => CRM_Utils_Type::T_STRING, ); $statistics['counts']['count' . $index] = array( - 'title' => ts('Total No Pledges (') . $dao->currency . ')', + 'title' => ts('Total No Pledges') . ' (' . $dao->currency . ')', 'value' => $count, 'type' => CRM_Utils_Type::T_INT, ); -- 2.25.1