]> git.mxchange.org Git - friendica.git/commitdiff
spelling: community
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 22 Mar 2023 03:17:08 +0000 (23:17 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 20:03:22 +0000 (16:03 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
CHANGELOG
src/Module/Conversation/Community.php
src/Module/Conversation/Network.php
view/theme/vier/templates/communityhome.tpl
view/theme/vier/theme.php

index 260f62dfef48a03069ec4df7ab55ce24d95c398d..040bd89a2b009565e9689bfbed62a7b2745a6464 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1477,7 +1477,7 @@ Version 3.6 (2018-03-23)
     Enhancements to the probing of pump.io profiles [annando]
     Enhancements to the handling of BBCode tags [MrPetovan]
     Enhancements to the OEmbed handling [MrPetovan]
-    Fixed a bug that triggered the display of activities on the cummunity page [annando]
+    Fixed a bug that triggered the display of activities on the community page [annando]
     Fixed a bug with personal notes [annando]
     Fixed a display issue of long postings when using the showmore option [annando]
     Fixed a bug that caused Twidere to crash on reload [annando]
index 818943733a905c2171e1263ffbfe96ae9fbdd670..ae6297e48484794a2e3dee4d894f7d36f0c1f468 100644 (file)
@@ -302,7 +302,7 @@ class Community extends BaseModule
        }
 
        /**
-        * Database query for the comunity page
+        * Database query for the community page
         *
         * @param $min_id
         * @param $max_id
index 84d08ff9c2d15842fb07c01125677b3314ff22e2..5f8f925a367222cf7b0754e78ba72321c7a92d70 100644 (file)
@@ -120,7 +120,7 @@ class Network extends BaseModule
                        $content = '';
 
                        if (self::$forumContactId) {
-                               // If self::$forumContactId belongs to a communitity forum or a privat goup,.add a mention to the status editor
+                               // If self::$forumContactId belongs to a community forum or a privat goup,.add a mention to the status editor
                                $condition = ["`id` = ? AND `contact-type` = ?", self::$forumContactId, Contact::TYPE_COMMUNITY];
                                $contact = DBA::selectFirst('contact', ['addr'], $condition);
                                if (!empty($contact['addr'])) {
index 94c8abcd7bbbed97f36eb973a117b897725bdc8a..24f2ac98ceae449c99104b3f36062675ab0e8e6a 100644 (file)
@@ -4,11 +4,11 @@
 </div>
 {{/if}}
 
-{{if $comunity_profiles_title}}
+{{if $community_profiles_title}}
 <div id="right_profiles" class="widget">
-<h3>{{$comunity_profiles_title}}</h3>
+<h3>{{$community_profiles_title}}</h3>
 <div id='lastusers-wrapper' class='items-wrapper'>
-{{foreach $comunity_profiles_items as $i}}
+{{foreach $community_profiles_items as $i}}
        {{$i nofilter}}
 {{/foreach}}
 </div>
index 9ddf7a4de069fc1ba93835dd6ccfed31cffee6bc..91e050c667038683568e7f1c2d73416ddeaf2c38 100644 (file)
@@ -140,14 +140,14 @@ function vier_community_info()
        $url = DI::baseUrl();
        $aside['$url'] = $url;
 
-       // comunity_profiles
+       // community_profiles
        if ($show_profiles) {
                $contacts = Contact\Relation::getCachedSuggestions(DI::userSession()->getLocalUserId(), 0, 9);
 
                $tpl = Renderer::getMarkupTemplate('ch_directory_item.tpl');
                if (DBA::isResult($contacts)) {
-                       $aside['$comunity_profiles_title'] = DI::l10n()->t('Community Profiles');
-                       $aside['$comunity_profiles_items'] = [];
+                       $aside['$community_profiles_title'] = DI::l10n()->t('Community Profiles');
+                       $aside['$community_profiles_items'] = [];
 
                        foreach ($contacts as $contact) {
                                $entry = Renderer::replaceMacros($tpl, [
@@ -156,7 +156,7 @@ function vier_community_info()
                                        '$photo' => Contact::getMicro($contact),
                                        '$alt_text' => $contact['name'],
                                ]);
-                               $aside['$comunity_profiles_items'][] = $entry;
+                               $aside['$community_profiles_items'][] = $entry;
                        }
                }
        }