From: Evan Prodromou Date: Wed, 4 May 2011 17:49:46 +0000 (-0700) Subject: 'Home' to 'Home timeline' X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=be57e253fb40097864cfbcde8efa71e6a187fd94;p=quix0rs-gnu-social.git 'Home' to 'Home timeline' --- diff --git a/actions/all.php b/actions/all.php index 388f24daad..8ee3ec3fa6 100644 --- a/actions/all.php +++ b/actions/all.php @@ -86,10 +86,10 @@ class AllAction extends ProfileAction { $user = common_current_user(); if ($user->id == $this->user->id) { - return _('Home'); + return _('Home timeline'); } else { $profile = $this->user->getProfile(); - return sprintf(_("%s's Home"), $profile->getBestName()); + return sprintf(_("%s's home timeline"), $profile->getBestName()); } }