From fc60c2465acac89e34b6df11681ef8c40d6d0ea6 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 17 Jun 2013 15:54:33 -0700 Subject: [PATCH] CRM-9759 clarifying Component dropdown labels for add/edit activity type form. ---------------------------------------- * CRM-9759: Clarify Component field options when creating a new activity type http://issues.civicrm.org/jira/browse/CRM-9759 --- CRM/Admin/Form/Options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Admin/Form/Options.php b/CRM/Admin/Form/Options.php index 32ae6c12f8..317368a6bc 100644 --- a/CRM/Admin/Form/Options.php +++ b/CRM/Admin/Form/Options.php @@ -255,7 +255,7 @@ class CRM_Admin_Form_Options extends CRM_Admin_Form { (($this->_action & CRM_Core_Action::ADD) || !$isReserved) ) { $caseID = CRM_Core_Component::getComponentID('CiviCase'); - $components = array('' => ts('Contact'), $caseID => 'CiviCase'); + $components = array('' => ts('Contacts or Cases'), $caseID => 'Cases Only'); $this->add('select', 'component_id', ts('Component'), -- 2.25.1