spelling: community

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-03-21 23:17:08 -04:00
parent 0e4048ef71
commit 72cc354214
5 changed files with 10 additions and 10 deletions

View File

@ -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]

View 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

View 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'])) {

View 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>

View 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;
}
}
}