From 36bf912b56cbc229a362f8ca431b4cc41f84011c Mon Sep 17 00:00:00 2001 From: "deb.monish" Date: Mon, 23 Oct 2017 14:35:15 +0530 Subject: [PATCH] Issue 2 fix: Warning text and cancel / submit --- CRM/Lineitemedit/Form/Cancel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Lineitemedit/Form/Cancel.php b/CRM/Lineitemedit/Form/Cancel.php index 71669ed..ee9aa39 100644 --- a/CRM/Lineitemedit/Form/Cancel.php +++ b/CRM/Lineitemedit/Form/Cancel.php @@ -37,7 +37,7 @@ public function assignFormVariables() { } public function buildQuickForm() { - $this->assign('message', ts('WARNING: Cancelling this lineitem will affect the related contribution and update the associated financial transactions. Do you want to continue?')); + $this->assign('message', ts('WARNING: Cancelling this line item will affect the related contribution and update the associated financial transactions. Do you want to continue?')); $this->addButtons(array( array( @@ -47,7 +47,7 @@ public function buildQuickForm() { ), array( 'type' => 'cancel', - 'name' => ts('Cancel'), + 'name' => ts('Close'), ), ));