Skip to content
Snippets Groups Projects
Commit 18d2d5e2 authored by yashodha's avatar yashodha
Browse files

made changes to text to make context clearer

parent e32e2e73
No related branches found
No related tags found
No related merge requests found
......@@ -444,12 +444,12 @@ class CRM_Activity_BAO_Query {
CRM_Core_Form_Date::buildDateRange($form, 'activity_date', 1, '_low', '_high', ts('From'), FALSE, FALSE);
$activityRoles = array(
1 => ts('Created by'),
3 => ts('With'),
2 => ts('Assigned to'),
3 => ts('Targeted to')
1 => ts('Added by'),
);
$form->addRadio('activity_role', NULL, $activityRoles);
$form->setDefaults(array('activity_role' => 3));
$activityStatus = CRM_Core_PseudoConstant::activityStatus();
foreach ($activityStatus as $activityStatusID => $activityStatusName) {
$activity_status[] = $form->createElement('checkbox', $activityStatusID, NULL, $activityStatusName);
......
......@@ -232,7 +232,7 @@ class CRM_Activity_Form_Search extends CRM_Core_Form {
* @return void
*/
function buildQuickForm() {
$this->addElement('text', 'sort_name', ts('With (name or email)'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
$this->addElement('text', 'sort_name', ts('Name or Email'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
CRM_Activity_BAO_Query::buildSearchForm($this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment