X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FForm%2FTask%2FPickProfile.php;h=57b7fea045708553a5750e29f4909c04b0602092;hb=b581842fe3332c54a5baa614972b421656006dec;hp=f312d8f2d2991afb4ca83abb9c4b2776c3d2cb99;hpb=7f12f0445569af4389fbec590ad440bbb75a1f04;p=civicrm-core.git diff --git a/CRM/Event/Form/Task/PickProfile.php b/CRM/Event/Form/Task/PickProfile.php index f312d8f2d2..57b7fea045 100644 --- a/CRM/Event/Form/Task/PickProfile.php +++ b/CRM/Event/Form/Task/PickProfile.php @@ -67,12 +67,12 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { $session = CRM_Core_Session::singleton(); $this->_userContext = $session->readUserContext(); - CRM_Utils_System::setTitle(ts('Batch Update for Event Participants')); + CRM_Utils_System::setTitle(ts('Update multiple participants')); $validate = FALSE; //validations if (count($this->_participantIds) > $this->_maxParticipations) { - CRM_Core_Session::setStatus("The maximum number of event participations you can select for Batch Update is {$this->_maxParticipations}. You have selected " . count($this->_participantIds) . ". Please select fewer participantions from your search results and try again."); + CRM_Core_Session::setStatus("The maximum number of records you can select for Update multiple participants is {$this->_maxParticipations}. You have selected " . count($this->_participantIds) . ". Please select fewer participantions from your search results and try again."); $validate = TRUE; } @@ -93,7 +93,7 @@ class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task { $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE); if (empty($profiles)) { - CRM_Core_Session::setStatus("To use Batch Update for event participants, you need to configure a profile containing only Participant fields (e.g. Participant Status, Participant Role, etc.). Configure a profile at 'Administer CiviCRM >> Customize >> CiviCRM Profile'."); + CRM_Core_Session::setStatus("To use Update multiple participants, you need to configure a profile containing only Participant fields (e.g. Participant Status, Participant Role, etc.). Configure a profile at 'Administer CiviCRM >> Customize >> CiviCRM Profile'."); CRM_Utils_System::redirect($this->_userContext); }