From b30461e4e39b028e01305c9c17d5b3a937fd1ba7 Mon Sep 17 00:00:00 2001 From: Justin Freeman Date: Tue, 4 Jul 2017 14:23:51 +1000 Subject: [PATCH] CIVICRM-167 Change text to keep terminology consistent. Active? versus Send email --- CRM/Admin/Form/ScheduleReminders.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CRM/Admin/Form/ScheduleReminders.php b/CRM/Admin/Form/ScheduleReminders.php index 21f82dc32150..de89237829d3 100644 --- a/CRM/Admin/Form/ScheduleReminders.php +++ b/CRM/Admin/Form/ScheduleReminders.php @@ -165,11 +165,10 @@ public function buildQuickForm() { $this->add('number', 'start_action_offset', ts('When'), array('class' => 'six', 'min' => 0)); $this->addRule('start_action_offset', ts('Value should be a positive number'), 'positiveInteger'); - $isActive = ts('Send email'); + $isActive = ts('Scheduled Reminder Active'); $recordActivity = ts('Record activity for automated email'); if ($providersCount) { $this->assign('sms', $providersCount); - $isActive = ts('Send email or SMS'); $recordActivity = ts('Record activity for automated email or SMS'); $options = CRM_Core_OptionGroup::values('msg_mode'); $this->add('select', 'mode', ts('Send as'), $options);