From e763f57d291cc6cef7e8cd9291872cb6f9f1c216 Mon Sep 17 00:00:00 2001
From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Sat, 5 Nov 2022 17:54:50 -0400
Subject: [PATCH] Fix capitalization of unfollow links in Model\Contact

---
 src/Model/Contact.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Model/Contact.php b/src/Model/Contact.php
index 7c83e03511..d8fe946fc4 100644
--- a/src/Model/Contact.php
+++ b/src/Model/Contact.php
@@ -1192,7 +1192,7 @@ class Contact
 				'network' => [DI::l10n()->t('Network Posts') , $posts_link   , false],
 				'edit'    => [DI::l10n()->t('View Contact')  , $contact_url  , false],
 				'follow'  => [DI::l10n()->t('Connect/Follow'), $follow_link  , true],
-				'unfollow'=> [DI::l10n()->t('UnFollow')      , $unfollow_link, true],
+				'unfollow'=> [DI::l10n()->t('Unfollow')      , $unfollow_link, true],
 			];
 		} else {
 			$menu = [
@@ -1203,7 +1203,7 @@ class Contact
 				'edit'    => [DI::l10n()->t('View Contact')  , $contact_url      , false],
 				'pm'      => [DI::l10n()->t('Send PM')       , $pm_url           , false],
 				'follow'  => [DI::l10n()->t('Connect/Follow'), $follow_link      , true],
-				'unfollow'=> [DI::l10n()->t('UnFollow')      , $unfollow_link    , true],
+				'unfollow'=> [DI::l10n()->t('Unfollow')      , $unfollow_link    , true],
 			];
 
 			if (!empty($contact['pending'])) {
-- 
2.39.5