X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcommunity.php;fp=mod%2Fcommunity.php;h=06c15d0083a5b12d16b041198f7d3267a72e29db;hb=662d2b31a1977f2ba9c43b1a980662c383d86a11;hp=29fcd447944fc2020362f0099038155be2fceb67;hpb=4949be60a899105aa7f125227f2767af87afceb2;p=friendica.git diff --git a/mod/community.php b/mod/community.php index 29fcd44794..06c15d0083 100644 --- a/mod/community.php +++ b/mod/community.php @@ -72,7 +72,7 @@ function community_content(App $a, $update = 0) if ((local_user() || in_array($page_style, [CP_USERS_AND_GLOBAL, CP_USERS_ON_SERVER])) && empty(Config::get('system', 'singleuser'))) { $tabs[] = [ - 'label' => L10n::t('Community'), + 'label' => L10n::t('Local Community'), 'url' => 'community/local', 'sel' => $content == 'local' ? 'active' : '', 'title' => L10n::t('Posts from local users on this server'), @@ -83,10 +83,10 @@ function community_content(App $a, $update = 0) if (local_user() || in_array($page_style, [CP_USERS_AND_GLOBAL, CP_GLOBAL_COMMUNITY])) { $tabs[] = [ - 'label' => L10n::t('Global Timeline'), + 'label' => L10n::t('Global Community'), 'url' => 'community/global', 'sel' => $content == 'global' ? 'active' : '', - 'title' => L10n::t('Posts from users of the federated network'), + 'title' => L10n::t('Posts from users of the whole federated network'), 'id' => 'community-global-tab', 'accesskey' => 'g' ];