]> git.mxchange.org Git - friendica.git/commitdiff
Better title for the different communities
authorMichael <heluecht@pirati.ca>
Thu, 1 Feb 2018 06:11:56 +0000 (06:11 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 1 Feb 2018 06:11:56 +0000 (06:11 +0000)
doc/Accesskeys.md
mod/community.php

index b9e5f5430a0db78d099d4f53dc8c4f3b2b3d8a77..550a00e5a9261c8b29b6b605a8a8db6e2d10ef7d 100644 (file)
@@ -15,6 +15,11 @@ General
 * f: notifications
 * u: user menu (in themes "vier" and "quattro")
 
+/community
+--------
+* l: Local community
+* g: Global community
+
 /profile
 --------
 * m: Status Messages and Posts
index 29fcd447944fc2020362f0099038155be2fceb67..06c15d0083a5b12d16b041198f7d3267a72e29db 100644 (file)
@@ -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'
                        ];