$formValues = $this->controller->exportValues();
// the name and description are actually stored with the group and not the saved search
- $this->add('text', 'title', ts('Name'),
+ $this->add('text', 'title', ts('Group Title'),
CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title'), TRUE
);
- $this->addElement('textarea', 'description', ts('Description'),
+ $this->addElement('textarea', 'description', ts('Group Description'),
CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'description')
);
$this->addDefaultButtons(ts('Save Smart Group'));
$this->assign('partiallySelected', $formValues['radio_ts'] != 'ts_all');
}
- $this->addRule('title', ts('Name already exists in Database.'),
+ $this->addRule('title', ts('Group Title already exists in Database.'),
'objectExists', ['CRM_Contact_DAO_Group', $groupID, 'title']
);
}