From 0feb97343dc564bd0548ad4f59f78606ae88c330 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 15 Nov 2014 18:01:45 -0500 Subject: [PATCH] CRM-15603 - Standardize phrasing of 'Some Fields Excluded' message --- CRM/Activity/Form/Task/Batch.php | 2 +- CRM/Batch/Form/Entry.php | 2 +- CRM/Contact/Form/Task/Batch.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Activity/Form/Task/Batch.php b/CRM/Activity/Form/Task/Batch.php index 5cd91baf54..e29bc0e634 100755 --- a/CRM/Activity/Form/Task/Batch.php +++ b/CRM/Activity/Form/Task/Batch.php @@ -196,7 +196,7 @@ class CRM_Activity_Form_Task_Batch extends CRM_Activity_Form_Task { // $buttonName = $this->controller->getButtonName('submit'); if ($suppressFields) { - CRM_Core_Session::setStatus(ts("FILE or Autocomplete Select type field(s) in the selected profile are not supported for Batch Update."), ts("Some fields have been excluded"), "info"); + CRM_Core_Session::setStatus(ts("File or Autocomplete-Select type field(s) in the selected profile are not supported for Batch Update."), ts('Some Fields Excluded'), 'info'); } $this->addDefaultButtons(ts('Update Activities')); diff --git a/CRM/Batch/Form/Entry.php b/CRM/Batch/Form/Entry.php index 5780c4a563..02f1015ebb 100644 --- a/CRM/Batch/Form/Entry.php +++ b/CRM/Batch/Form/Entry.php @@ -229,7 +229,7 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form { $buttonName = $this->controller->getButtonName('submit'); if ($suppressFields && $buttonName != '_qf_Entry_next') { - CRM_Core_Session::setStatus(ts("FILE or Autocomplete Select type field(s) in the selected profile are not supported for Batch Update."), ts("Some fields have been excluded."), "info"); + CRM_Core_Session::setStatus(ts("File or Autocomplete-Select type field(s) in the selected profile are not supported for Batch Update."), ts('Some Fields Excluded'), 'info'); } } diff --git a/CRM/Contact/Form/Task/Batch.php b/CRM/Contact/Form/Task/Batch.php index 815488ce7c..b142d0a467 100644 --- a/CRM/Contact/Form/Task/Batch.php +++ b/CRM/Contact/Form/Task/Batch.php @@ -158,7 +158,7 @@ class CRM_Contact_Form_Task_Batch extends CRM_Contact_Form_Task { $buttonName = $this->controller->getButtonName('submit'); if ($suppressFields && $buttonName != '_qf_BatchUpdateProfile_next') { - CRM_Core_Session::setStatus(ts("File or Autocomplete Select type field(s) in the selected profile are not supported for Batch Update and have been excluded."), ts('Some Fields Excluded'), 'info'); + CRM_Core_Session::setStatus(ts("File or Autocomplete-Select type field(s) in the selected profile are not supported for Batch Update."), ts('Some Fields Excluded'), 'info'); } $this->addDefaultButtons(ts('Update Contacts')); -- 2.25.1