From 8a4b89b44e94a60963787c09fa9791e124b43792 Mon Sep 17 00:00:00 2001 From: Lars SG Date: Thu, 15 Apr 2021 07:28:03 -0600 Subject: [PATCH] Clarify scheduled reminder options: Event Start Date -> Event Start, etc Before: Event Start Date, Registration End Date, etc After: Event Start, Registration End --- CRM/Event/ActionMapping.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CRM/Event/ActionMapping.php b/CRM/Event/ActionMapping.php index 9c8aaae7a5..6a7f1ecda1 100644 --- a/CRM/Event/ActionMapping.php +++ b/CRM/Event/ActionMapping.php @@ -74,10 +74,10 @@ class CRM_Event_ActionMapping extends \Civi\ActionSchedule\Mapping { */ public function getDateFields() { return [ - 'start_date' => ts('Event Start Date'), - 'end_date' => ts('Event End Date'), - 'registration_start_date' => ts('Registration Start Date'), - 'registration_end_date' => ts('Registration End Date'), + 'start_date' => ts('Event Start'), + 'end_date' => ts('Event End'), + 'registration_start_date' => ts('Registration Start'), + 'registration_end_date' => ts('Registration End'), ]; } -- 2.25.1