From e47238e5b3dbee85220a801677b095ec4bdf04ad Mon Sep 17 00:00:00 2001 From: yashodha Date: Mon, 20 Jul 2015 09:41:31 +0530 Subject: [PATCH] changes to description so that they make sense while translating --- CRM/Contribute/Form/Contribution.php | 2 +- CRM/Member/Form/Membership.php | 2 +- CRM/Member/Form/MembershipRenewal.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Contribute/Form/Contribution.php b/CRM/Contribute/Form/Contribution.php index 862665413f..9038c3e947 100644 --- a/CRM/Contribute/Form/Contribution.php +++ b/CRM/Contribute/Form/Contribution.php @@ -1114,7 +1114,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP $this->_params['ip_address'] = CRM_Utils_System::ipAddress(); $this->_params['amount'] = $this->_params['total_amount']; $this->_params['amount_level'] = 0; - $this->_params['description'] = ts('Office Credit Card contribution'); + $this->_params['description'] = ts("Contribution submitted by a staff person using contributor's credit card"); $this->_params['currencyID'] = CRM_Utils_Array::value('currency', $this->_params, CRM_Core_Config::singleton()->defaultCurrency diff --git a/CRM/Member/Form/Membership.php b/CRM/Member/Form/Membership.php index 1bf1106e4e..a771e5b5b1 100644 --- a/CRM/Member/Form/Membership.php +++ b/CRM/Member/Form/Membership.php @@ -1463,7 +1463,7 @@ class CRM_Member_Form_Membership extends CRM_Member_Form { $this->_params['ip_address'] = CRM_Utils_System::ipAddress(); $this->_params['amount'] = $params['total_amount']; $this->_params['currencyID'] = $config->defaultCurrency; - $this->_params['description'] = ts('Office Credit Card Membership Signup Contribution'); + $this->_params['description'] = ts("Contribution submitted by a staff person using member's credit card for signup"); $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE)); $this->_params['financial_type_id'] = $params['financial_type_id']; diff --git a/CRM/Member/Form/MembershipRenewal.php b/CRM/Member/Form/MembershipRenewal.php index 913add3d09..700f1a8e89 100644 --- a/CRM/Member/Form/MembershipRenewal.php +++ b/CRM/Member/Form/MembershipRenewal.php @@ -535,7 +535,7 @@ class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form { CRM_Utils_System::mungeCreditCard($this->_params['credit_card_number']) ); $this->assign('credit_card_type', $this->_params['credit_card_type']); - $this->_params['description'] = ts('Office Credit Card Membership Renewal Contribution'); + $this->_params['description'] = ts("Contribution submitted by a staff person using member's credit card for renewal"); $this->_params['ip_address'] = CRM_Utils_System::ipAddress(); $this->_params['amount'] = $this->_params['total_amount']; -- 2.25.1