From 660ef5f6fe4828ee33fc025aafeaf5bf7b610752 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Tue, 27 Sep 2016 17:56:24 +1000 Subject: [PATCH] Move current label to description and add shorter label in --- CRM/Admin/Form/PaymentProcessor.php | 2 +- templates/CRM/Admin/Form/PaymentProcessor.tpl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CRM/Admin/Form/PaymentProcessor.php b/CRM/Admin/Form/PaymentProcessor.php index c29daa5b71..2f0fd1a15f 100644 --- a/CRM/Admin/Form/PaymentProcessor.php +++ b/CRM/Admin/Form/PaymentProcessor.php @@ -212,7 +212,7 @@ class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form { $this->add('checkbox', 'is_active', ts('Is this Payment Processor active?')); $this->add('checkbox', 'is_default', ts('Is this Payment Processor the default?')); $creditCardTypes = CRM_Contribute_PseudoConstant::creditCard(); - $this->addCheckBox('accept_credit_cards', ts('Select Credit Card Types that this payment processor can accept'), + $this->addCheckBox('accept_credit_cards', ts('Accepted Credit Card Type(s)'), $creditCardTypes, NULL, NULL, NULL, NULL, '   '); foreach ($this->_fields as $field) { if (empty($field['label'])) { diff --git a/templates/CRM/Admin/Form/PaymentProcessor.tpl b/templates/CRM/Admin/Form/PaymentProcessor.tpl index c4f276ccba..b813ff456b 100644 --- a/templates/CRM/Admin/Form/PaymentProcessor.tpl +++ b/templates/CRM/Admin/Form/PaymentProcessor.tpl @@ -66,7 +66,8 @@ {$form.is_default.html} {$form.is_default.label} - {$form.accept_credit_cards.label}{$form.accept_credit_cards.html} + {$form.accept_credit_cards.label}{$form.accept_credit_cards.html}
+ {ts}Select Credit Card Types that this payment processor can accept{/ts}
-- 2.25.1