]> git.mxchange.org Git - friendica.git/commitdiff
Fix capitalization of unfollow links in Model\Contact
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 5 Nov 2022 21:54:50 +0000 (17:54 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 5 Nov 2022 21:54:50 +0000 (17:54 -0400)
src/Model/Contact.php

index 7c83e035119faa0eb41f77a6bbc9512ffa5495c4..d8fe946fc4a8d0707b2c255a8dc525e17a876db1 100644 (file)
@@ -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'])) {