From 4defe014a450c2feccd99fbb537ad8c86534bef0 Mon Sep 17 00:00:00 2001 From: Liam Morland Date: Wed, 15 May 2024 10:44:15 -0400 Subject: [PATCH] Issue #477: Replace "Data sets" with "Metadata records" in ReviewReminder --- html/modules/custom/bc_dc/src/Service/ReviewReminder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/modules/custom/bc_dc/src/Service/ReviewReminder.php b/html/modules/custom/bc_dc/src/Service/ReviewReminder.php index 23e7fc6a..f9c6058b 100644 --- a/html/modules/custom/bc_dc/src/Service/ReviewReminder.php +++ b/html/modules/custom/bc_dc/src/Service/ReviewReminder.php @@ -99,7 +99,7 @@ public function sendRemindersToOneUser(int $uid, array $notifications): ?bool { return NULL; } - $subject = $this->t('Data sets you maintain need updates', [], ['langcode' => $account->getPreferredLangcode()]); + $subject = $this->t('Metadata records you maintain need updates', [], ['langcode' => $account->getPreferredLangcode()]); $success = GcNotifyApiService::sendMessage([$email], $subject, $body); if ($success) {