]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change 'You and friends' to 'Home'
authorEvan Prodromou <evan@status.net>
Wed, 4 May 2011 17:48:12 +0000 (10:48 -0700)
committerEvan Prodromou <evan@status.net>
Wed, 4 May 2011 17:48:12 +0000 (10:48 -0700)
actions/all.php

index f558c3925f7919f3dcd938973304a225be7a485f..388f24daad19c91b01d12252672adbbb97db1f8a 100644 (file)
@@ -84,12 +84,12 @@ class AllAction extends ProfileAction
 
     function title()
     {
-        if ($this->page > 1) {
-            // TRANS: Page title. %1$s is user nickname, %2$d is page number
-            return sprintf(_('%1$s and friends, page %2$d'), $this->user->nickname, $this->page);
+        $user = common_current_user();
+        if ($user->id == $this->user->id) {
+            return _('Home');
         } else {
-            // TRANS: Page title. %s is user nickname
-            return sprintf(_("%s and friends"), $this->user->nickname);
+            $profile = $this->user->getProfile();
+            return sprintf(_("%s's Home"), $profile->getBestName());
         }
     }
 
@@ -190,18 +190,6 @@ class AllAction extends ProfileAction
         //        $pop = new InboxTagCloudSection($this, $this->user);
         //        $pop->show();
     }
-
-    function showPageTitle()
-    {
-        $user = common_current_user();
-        if ($user && ($user->id == $this->user->id)) {
-            // TRANS: H1 text for page when viewing a list for self.
-            $this->element('h1', null, _("You and friends"));
-        } else {
-            // TRANS: H1 text for page. %s is a user nickname.
-            $this->element('h1', null, sprintf(_('%s and friends'), $this->user->nickname));
-        }
-    }
 }
 
 class ThreadingInboxNoticeStream extends ThreadingNoticeStream